예제 #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;
 }