示例#1
0
 public DataUploader(IOptions <DomainOptions> options,
                     GarbageCollectorContext dbContext, IMapper mapper)
 {
     _options   = options;
     _dbContext = dbContext;
     _mapper    = mapper;
 }
 public UserWorkflowsService(IMapper mapper, GarbageCollectorContext dbContext, CategoriesService
                             categoriesService, WasteTakePointService wasteTakePointService)
 {
     this.mapper                = mapper;
     this.dbContext             = dbContext;
     this.categoriesService     = categoriesService;
     this.wasteTakePointService = wasteTakePointService;
 }
 public WasteTakePointController(GarbageCollectorContext dbContext, IMapper mapper)
 {
     _dbcontext = dbContext;
     _mapper    = mapper;
 }
 public TestController(IDataUploader dataUploader, GarbageCollectorContext garbageCollectorContext)
 {
     _dataUploader = dataUploader;
     this.garbageCollectorContext = garbageCollectorContext;
 }
 public WasteTakePointService(GarbageCollectorContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
 public WasteCategoriesController(GarbageCollectorContext dbContext, IMapper mapper)
 {
     _dbcontext = dbContext;
     _mapper    = mapper;
 }
示例#7
0
 public CategoriesService(GarbageCollectorContext dbContext, IMapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }