예제 #1
0
 public HomeController(ILogger <HomeController> logger, TaskListDbContext db)
 {
     _logger = logger;
     _db     = db;
 }
예제 #2
0
 public HostRoleAndUserCreator(TaskListDbContext context)
 {
     _context = context;
 }
예제 #3
0
 public DefaultSettingsCreator(TaskListDbContext context)
 {
     _context = context;
 }
예제 #4
0
 public TaskRepository(TaskListDbContext dbContext)
     : base(dbContext)
 {
 }
예제 #5
0
 public DefaultEditionsCreator(TaskListDbContext context)
 {
     _context = context;
 }
예제 #6
0
 public DefaultTenantCreator(TaskListDbContext context)
 {
     _context = context;
 }
예제 #7
0
 public InitialHostDbBuilder(TaskListDbContext context)
 {
     _context = context;
 }
예제 #8
0
 public DefaultLanguagesCreator(TaskListDbContext context)
 {
     _context = context;
 }
예제 #9
0
 public void SetUpFixture()
 {
     _context = new TaskListDbContext();
 }
예제 #10
0
 public HomeController(TaskListDbContext context)
 {
     _context = context;
 }
예제 #11
0
 public TaskListController(TaskListDbContext db)
 {
     _db = db;
 }
예제 #12
0
 public TaskController(TaskListDbContext _context)
 {
     this._context = _context;
 }
예제 #13
0
 public ProjectRepository(TaskListDbContext context)
     : base(context)
 {
 }
예제 #14
0
 public TenantRoleAndUserBuilder(TaskListDbContext context, int tenantId)
 {
     _context  = context;
     _tenantId = tenantId;
 }
예제 #15
0
 public AuthenticationsController(TaskListDbContext context)
 {
     _context = context;
 }
예제 #16
0
 public ListRepository(TaskListDbContext context)
 {
     _context = context;
 }
예제 #17
0
 public ToDoItemRepository(TaskListDbContext dbContext)
     : base(dbContext)
 {
 }
예제 #18
0
 public TasksController(ILogger <HomeController> logger, TaskListDbContext db, IEmailService emailService)
 {
     _logger       = logger;
     _emailService = emailService;
     _db           = db;
 }
예제 #19
0
 public DatabaseController(TaskListDbContext dbContext, ApplicationDbContext identityContext)
 {
     _dbContext       = dbContext;
     _identityContext = identityContext;
 }
예제 #20
0
 public UserRepository(TaskListDbContext context)
     : base(context)
 {
 }
예제 #21
0
 public TasksController(TaskListDbContext context)
 {
     _context = context;
 }
예제 #22
0
 public BaseRepository(TaskListDbContext dbContext)
 {
     _dbContext = dbContext;
     _dbSet     = dbContext.Set <TEntity>();
 }