| 12345678910111213141516171819202122 | using Comal.Classes;using InABox.Core;namespace Comal.Stores{    public class EmployeeFormSubscriptionStore : BaseStore<EmployeeFormSubscription>    {        protected override void AfterSave(EmployeeFormSubscription entity)        {            base.AfterSave(entity);            Logger.Send(LogType.Information, UserID, "Resetting Form Subscription Cache");            FormSubscriptionCache.Subscriptions = null;        }        protected override void AfterDelete(EmployeeFormSubscription entity)        {            base.AfterDelete(entity);            Logger.Send(LogType.Information, UserID, "Resetting Form Subscription Cache");            FormSubscriptionCache.Subscriptions = null;        }    }}
 |