protected BaseEfService( ZirconDbContext dbContext, IMapper mapper) { this.DbContext = dbContext; this.Mapper = mapper; }
public void InitializeTests() { this.dbContext = MockDbContext.GetContext(); this.mapper = MockAutoMapper.GetMapper(); }
public UserAddressService(ZirconDbContext dbContext, IMapper mapper) : base(dbContext, mapper) { }
public AdminUsersService(ZirconDbContext dbContext, IMapper mapper) : base(dbContext, mapper) { }
public CategoriesService(ZirconDbContext dbContext, IMapper mapper) : base(dbContext, mapper) { }
public AdminProductsService(ZirconDbContext dbContext, IMapper mapper) : base(dbContext, mapper) { }
public UserProductDetailsService(ZirconDbContext dbContext, IMapper mapper) : base(dbContext, mapper) { }
public CartProductService(ZirconDbContext dbContext, IMapper mapper) : base(dbContext, mapper) { }
public ChangeUserInfoService(ZirconDbContext dbContext, IMapper mapper) : base(dbContext, mapper) { }