Ejemplo n.º 1
0
 public BaseEFService(
     TechnoshopContext dbContext,
     IMapper mapper)
 {
     this.DbContext = dbContext;
     this.Mapper    = mapper;
 }
Ejemplo n.º 2
0
 public AdminHomeService(TechnoshopContext dbContext, IMapper mapper)
     : base(dbContext, mapper)
 {
 }
Ejemplo n.º 3
0
 public ModeratorCategoryService(TechnoshopContext dbContext, IMapper mapper)
     : base(dbContext, mapper)
 {
 }
Ejemplo n.º 4
0
 public BuyerOrdersService(TechnoshopContext dbContext, IMapper mapper, UserManager <User> userManager)
     : base(dbContext, mapper)
 {
     this.userManager = userManager;
 }
 public ModeratorProductsService(TechnoshopContext dbContext, IMapper mapper, UserManager <User> userManager)
     : base(dbContext, mapper)
 {
     this.userManager = userManager;
 }
Ejemplo n.º 6
0
 public void InitializeTests()
 {
     this.dbContext = MockDbContext.GetContext();
     this.service   = new AdminProductService(this.dbContext, MockAutoMapper.GetMapper());
 }
Ejemplo n.º 7
0
 public BuyerProductsService(TechnoshopContext dbContext, IMapper mapper)
     : base(dbContext, mapper)
 {
 }
Ejemplo n.º 8
0
 public AdminUserService(TechnoshopContext dbContext, IMapper mapper, UserManager <User> userManager)
     : base(dbContext, mapper)
 {
     this.userManager = userManager;
 }
 public void InitializeTests()
 {
     this.dbContext = MockDbContext.GetContext();
     this.service   = new ModeratorCategoryService(dbContext, MockAutoMapper.GetMapper());
 }
Ejemplo n.º 10
0
 public AdminCategoryService(TechnoshopContext dbContext, IMapper mapper)
     : base(dbContext, mapper)
 {
 }