Пример #1
0
 public DrugManagerSvcFactory(IMapper mapper, ArchitectMainDbContext dbContext)
 {
     this._mapper    = mapper;
     this._dbContext = dbContext;
 }
Пример #2
0
 public DrugPropertiesService(IMapper mapper, ArchitectMainDbContext dbContext) : base(mapper, dbContext)
 {
     this._drugPropertiesRepo = new DrugPropertiesRepo(dbContext);
 }
Пример #3
0
 public DrugManagerSvcFactory(ArchitectMainDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public Service(IMapper mapper, ArchitectMainDbContext dbContext)
 {
     this._mapper   = mapper;
     this.DbContext = dbContext;
 }
 public Service(ArchitectMainDbContext dbContext)
 {
     this.DbContext = dbContext;
 }
 public DrugPropertiesRepo(IUserInfo userInfo, ArchitectMainDbContext dbContext)
     : base(userInfo, dbContext)
 {
 }
 public DrugPropertiesRepo(ArchitectMainDbContext dbContext)
     : base(dbContext)
 {
 }