public AccountsController(CheeseWiseDbContext context)
 {
     _context = context;
 }
示例#2
0
 public CompaniesController(CheeseWiseDbContext context)
 {
     _context = context;
 }
 public AuthController(IAuthService authService, CheeseWiseDbContext context)
 {
     _authService = authService;
     _context     = context;
 }
 public UsersController(CheeseWiseDbContext context)
 {
     _context = context;
 }
 public ServicesController(CheeseWiseDbContext context)
 {
     _context = context;
 }
 public CategoriesController(CheeseWiseDbContext context)
 {
     _context = context;
 }