Example #1
0
 public EnterpriseRepository(IMasterDbContext context)
     : base(context)
 {
 }
Example #2
0
 public TenantRepository(IMasterDbContext context)
     : base(context)
 {
 }
Example #3
0
 public MasterDatabaseController(IMasterDbContext dbContext)
 {
     _databaseExporter = new DatabaseJsonExporter(dbContext);
 }