示例#1
0
 public BillService(VarolistaDbContext context, IMapper mapper,
                    IBillTypeService billTypeService, ICostTypeService costTypeService,
                    IReportService reportService)
     : base(context, mapper)
 {
     _billTypeService = billTypeService;
     _costTypeService = costTypeService;
     _reportService   = reportService;
 }
示例#2
0
 public CostTypeServiceTests()
 {
     _costTypeService = new Services.CostTypeService(new Data.Repositories.CostTypeRepositoryInMemory());
 }
示例#3
0
 public CostTypesResolver(IMapper mapper, ICostTypeService service)
 {
     _mapper  = mapper;
     _service = service;
 }
示例#4
0
 public CostTypeController(ILogger <CostTypeController> logger, IMapper mapper, ICostTypeService baseService)
     : base(logger, mapper, baseService)
 {
 }
示例#5
0
 public CostTypeController(ICostTypeService costTypeService)
 {
     _costTypeService = costTypeService;
 }