public ProductsController(AppGreatDbContext context) { this.context = context; }
public OrdersController(AppGreatDbContext context) { this.context = context; }
public UsersController(AppGreatDbContext context, IUserService userService) { this.context = context; this.userService = userService; }