public DefaultLanguagesCreator(ProjectManagementSystemDbContext context)
 {
     _context = context;
 }
 public TenantRoleAndUserBuilder(ProjectManagementSystemDbContext context, int tenantId)
 {
     _context  = context;
     _tenantId = tenantId;
 }
Beispiel #3
0
 public DefaultModuleCreator(ProjectManagementSystemDbContext context)
 {
     _context = context;
 }
 public BaseGateway()
 {
     Context = new ProjectManagementSystemDbContext();
 }
Beispiel #5
0
 public DefaultSettingsCreator(ProjectManagementSystemDbContext context)
 {
     _context = context;
 }
Beispiel #6
0
 public EmployeesController(ProjectManagementSystemDbContext context)
 {
     _context = context;
 }
Beispiel #7
0
 public HostRoleAndUserCreator(ProjectManagementSystemDbContext context)
 {
     _context = context;
 }
 public DefaultTenantCreator(ProjectManagementSystemDbContext context)
 {
     _context = context;
 }
Beispiel #9
0
 public DefaultEditionsCreator(ProjectManagementSystemDbContext context)
 {
     _context = context;
 }
 public BaseRepo()
 {
     this.context = new ProjectManagementSystemDbContext <T>();
     this.dbSet   = context.Set <T>();
 }
 public CustomersController(ProjectManagementSystemDbContext context)
 {
     _context = context;
 }
 public InitialHostDbBuilder(ProjectManagementSystemDbContext context)
 {
     _context = context;
 }