| 1234567891011121314151617 | using Comal.Classes;namespace Comal.Stores{    public class SetoutStore : BaseStore<Setout>    {        protected override void AfterSave(Setout entity)        {            base.AfterSave(entity);        }        protected override void BeforeDelete(Setout entity)        {            UnlinkTrackingKanban<SetoutKanban, Setout, SetoutLink>(entity);        }    }}
 |