public AllergiesService(AllergiesDbContext context, IConfiguration configuration)
     : base(context, configuration)
 {
 }
Example #2
0
 protected BaseService(AllergiesDbContext context, IConfiguration configuration)
 {
     Context = context;
     Context.ChangeTracker.AutoDetectChangesEnabled = false;
     Configuration = configuration;
 }