public ItemService(FamilyShopContext context) { _context = context; }
public ListController(FamilyShopContext context) { _context = context; _service = new ListService(_context); }
public AuthenticationController(FamilyShopContext context) { _context = context; _authService = new AuthenticationService(_context); }
public ListService(FamilyShopContext context) { _context = context; }
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; }