Ejemplo n.º 1
0
 public ItemService(FamilyShopContext context)
 {
     _context = context;
 }
Ejemplo n.º 2
0
 public ListController(FamilyShopContext context)
 {
     _context = context;
     _service = new ListService(_context);
 }
Ejemplo n.º 3
0
 public AuthenticationController(FamilyShopContext context)
 {
     _context     = context;
     _authService = new AuthenticationService(_context);
 }
Ejemplo n.º 4
0
 public ListService(FamilyShopContext context)
 {
     _context = context;
 }
Ejemplo n.º 5
0
 public UsersController(FamilyShopContext context)
 {
     _context = context;
 }
Ejemplo n.º 6
0
 public FamilyController(FamilyShopContext context)
 {
     _context = context;
     _service = new FamilyService(_context);
 }
Ejemplo n.º 7
0
 public ItemController(FamilyShopContext context)
 {
     _context = context;
     _service = new ItemService(_context);
 }
Ejemplo n.º 8
0
 public AuthenticationService(FamilyShopContext context)
 {
     _context = context;
 }