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