public BasketAbstract(GlobalServeDbContext dbContext, ConfigurationService configurationService, ApplicationUserService userService)
 {
     _userService          = userService;
     _configurationService = configurationService;
     _dbContext            = dbContext;
     standardApiResponse   = new StandardApiResponse();
 }
 public StandardItem(GlobalServeDbContext dbContext, ConfigurationService configurationService, ApplicationUserService userService) : base(dbContext, configurationService, userService)
 {
 }