Example #1
0
 public AccountsController(PETSHOPContext context)
 {
     _context = context;
 }
Example #2
0
 public InventoryReceivingNotesController(PETSHOPContext context)
 {
     _context = context;
 }
Example #3
0
 public UserCommentsController(PETSHOPContext context)
 {
     _context = context;
 }
Example #4
0
 public LoginService(IOptions <AppSetting> appSettings, PETSHOPContext context)
 {
     _appSettings = appSettings.Value;
     _context     = context;
 }
Example #5
0
 public BillDetailsController(PETSHOPContext context)
 {
     _context = context;
 }
 public CostumeProductsController(PETSHOPContext context)
 {
     _context = context;
 }
 public DeliveryProductsController(PETSHOPContext context)
 {
     _context = context;
 }
Example #8
0
 public DistributorsController(PETSHOPContext context)
 {
     _context = context;
 }
 public CustomerTypesController(PETSHOPContext context)
 {
     _context = context;
 }
Example #10
0
 public LoginAuthenticationController(ILoginService userService, PETSHOPContext context)
 {
     _user    = userService;
     _context = context;
 }
Example #11
0
 public UserProfilesController(PETSHOPContext context)
 {
     _context = context;
 }
Example #12
0
 public CategoriesController(PETSHOPContext context)
 {
     _context = context;
 }
Example #13
0
 public UserScoresController(PETSHOPContext context)
 {
     _context = context;
 }
Example #14
0
 public ToyProductsController(PETSHOPContext context)
 {
     _context = context;
 }
Example #15
0
 public FeedbacksController(PETSHOPContext context)
 {
     _context = context;
 }
 public InventoryReceivingNoteDetailForCostumesController(PETSHOPContext context)
 {
     _context = context;
 }
Example #17
0
 public MyBillsController(PETSHOPContext context, IHttpContextAccessor httpContextAccessor)
 {
     _context             = context;
     _httpContextAccessor = httpContextAccessor;
 }
Example #18
0
 public PaymentMethodTypesController(PETSHOPContext context)
 {
     _context = context;
 }