public DefaultSettingsCreator(testDbContext context)
 {
     _context = context;
 }
예제 #2
0
 public ProjectsEmployeesController(testDbContext context)
 {
     _context = context;
 }
예제 #3
0
 public StudentRepository(testDbContext context, ILogger <StudentRepository> logger)
 {
     this._context = context;
     this._logger  = logger;
 }
예제 #4
0
 public InitialHostDbBuilder(testDbContext context)
 {
     _context = context;
 }
예제 #5
0
 public TasksController(testDbContext context)
 {
     _context = context;
 }
 public HostRoleAndUserCreator(testDbContext context)
 {
     _context = context;
 }
 public DefaultLanguagesCreator(testDbContext context)
 {
     _context = context;
 }
예제 #8
0
 public DefaultEditionsCreator(testDbContext context)
 {
     _context = context;
 }
 public TenantRoleAndUserBuilder(testDbContext context, int tenantId)
 {
     _context  = context;
     _tenantId = tenantId;
 }
예제 #10
0
 public AuthController(testDbContext context)
 {
     _context = context;
 }
예제 #11
0
 public EmployeesController(testDbContext context)
 {
     _context = context;
 }
예제 #12
0
 public ValuesController(testDbContext context)
 {
     _context = context;
 }
예제 #13
0
 public DefaultTenantCreator(testDbContext context)
 {
     _context = context;
 }