Пример #1
0
 public ItemService(FamilyShopContext context)
 {
     _context = context;
 }
Пример #2
0
 public ListController(FamilyShopContext context)
 {
     _context = context;
     _service = new ListService(_context);
 }
Пример #3
0
 public AuthenticationController(FamilyShopContext context)
 {
     _context     = context;
     _authService = new AuthenticationService(_context);
 }
Пример #4
0
 public ListService(FamilyShopContext context)
 {
     _context = context;
 }
Пример #5
0
 public UsersController(FamilyShopContext context)
 {
     _context = context;
 }
Пример #6
0
 public FamilyController(FamilyShopContext context)
 {
     _context = context;
     _service = new FamilyService(_context);
 }
Пример #7
0
 public ItemController(FamilyShopContext context)
 {
     _context = context;
     _service = new ItemService(_context);
 }
 public AuthenticationService(FamilyShopContext context)
 {
     _context = context;
 }