19 lines
362 B
C#
19 lines
362 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
|
|
}
|
|
|
|
|
|
}
|
|
}
|