コード例 #1
0
 public AccountsController(CheeseWiseDbContext context)
 {
     _context = context;
 }
コード例 #2
0
 public CompaniesController(CheeseWiseDbContext context)
 {
     _context = context;
 }
コード例 #3
0
 public AuthController(IAuthService authService, CheeseWiseDbContext context)
 {
     _authService = authService;
     _context     = context;
 }
コード例 #4
0
 public UsersController(CheeseWiseDbContext context)
 {
     _context = context;
 }
コード例 #5
0
 public ServicesController(CheeseWiseDbContext context)
 {
     _context = context;
 }
コード例 #6
0
 public CategoriesController(CheeseWiseDbContext context)
 {
     _context = context;
 }