SetoutStore.cs 382 B

1234567891011121314151617
  1. using Comal.Classes;
  2. namespace Comal.Stores
  3. {
  4. public class SetoutStore : BaseStore<Setout>
  5. {
  6. protected override void AfterSave(Setout entity)
  7. {
  8. base.AfterSave(entity);
  9. }
  10. protected override void BeforeDelete(Setout entity)
  11. {
  12. UnlinkTrackingKanban<SetoutKanban, Setout, SetoutLink>(entity);
  13. }
  14. }
  15. }