LicenseStore.cs 227 B

123456789101112
  1. using InABox.Core;
  2. namespace InABox.Database;
  3. public class LicenseStore : Store<License>
  4. {
  5. protected override void AfterSave(License entity)
  6. {
  7. base.AfterSave(entity);
  8. DbFactory.AssertLicense();
  9. }
  10. }