Files
BeWoPlaner/Service/Plugins/SaveInterceptor.cs
2017-11-06 10:30:25 +01:00

22 lines
458 B
C#

using System;
using System.Collections.Generic;
using BeWo.Data.Entities;
using BS.Shared.Core;
using BS.Shared.DataContracts;
namespace BeWo.Service.Plugins
{
public class SaveInterceptor : AbstractIDSpecificDefaultClass<SaveInterceptor>
{
public virtual void BeforeSaveServiceRecord(ServiceRecord sr)
{
//do nothing
}
public virtual bool AllowSaveCustomer(CustomerDC c)
{
return true;
}
}
}