コード例 #1
0
 public RecordController(IRecordRepository recordRepository, IFuelCardRepository fuelCardRepository,
                         ICorporationRepository corporationRepository, ICostAllocationRepository costAllocationRepository, IMapper mapper) : base(
         recordRepository, mapper)
 {
     _recordRepository         = recordRepository;
     _fuelCardRepository       = fuelCardRepository;
     _corporationRepository    = corporationRepository;
     _costAllocationRepository = costAllocationRepository;
     _mapper = mapper;
 }
コード例 #2
0
 public CostAllocationController(ICostAllocationRepository costAllocationRepository, IMapper mapper) : base(
         costAllocationRepository, mapper)
 {
 }