Beispiel #1
0
 public ItemService(FamilyShopContext context)
 {
     _context = context;
 }
 public ListController(FamilyShopContext context)
 {
     _context = context;
     _service = new ListService(_context);
 }
Beispiel #3
0
 public AuthenticationController(FamilyShopContext context)
 {
     _context     = context;
     _authService = new AuthenticationService(_context);
 }
Beispiel #4
0
 public ListService(FamilyShopContext context)
 {
     _context = context;
 }
Beispiel #5
0
 public UsersController(FamilyShopContext context)
 {
     _context = context;
 }
 public FamilyController(FamilyShopContext context)
 {
     _context = context;
     _service = new FamilyService(_context);
 }
 public ItemController(FamilyShopContext context)
 {
     _context = context;
     _service = new ItemService(_context);
 }
 public AuthenticationService(FamilyShopContext context)
 {
     _context = context;
 }