Example #1
0
 protected BaseEfService(
     ZirconDbContext dbContext,
     IMapper mapper)
 {
     this.DbContext = dbContext;
     this.Mapper    = mapper;
 }
Example #2
0
 public void InitializeTests()
 {
     this.dbContext = MockDbContext.GetContext();
     this.mapper    = MockAutoMapper.GetMapper();
 }
Example #3
0
 public UserAddressService(ZirconDbContext dbContext, IMapper mapper) : base(dbContext, mapper)
 {
 }
Example #4
0
 public AdminUsersService(ZirconDbContext dbContext, IMapper mapper) : base(dbContext, mapper)
 {
 }
Example #5
0
 public CategoriesService(ZirconDbContext dbContext, IMapper mapper) : base(dbContext, mapper)
 {
 }
Example #6
0
 public AdminProductsService(ZirconDbContext dbContext, IMapper mapper) : base(dbContext, mapper)
 {
 }
Example #7
0
 public UserProductDetailsService(ZirconDbContext dbContext, IMapper mapper) : base(dbContext, mapper)
 {
 }
Example #8
0
 public CartProductService(ZirconDbContext dbContext, IMapper mapper) : base(dbContext, mapper)
 {
 }
Example #9
0
 public ChangeUserInfoService(ZirconDbContext dbContext, IMapper mapper) : base(dbContext, mapper)
 {
 }