Beispiel #1
0
 public LayingsController(ILayingsUnit laying, ILotsUnit lots, IIncubatorsUnit incub, IMapper mapper)
 {
     _laying = laying;
     _lots   = lots;
     _mapper = mapper;
     _incub  = incub;
 }
Beispiel #2
0
 public OverheadsUnit(HomeBirdContext dc, IMapper mapper, ILotsUnit lotsUnit)
 {
     _dc       = dc;
     _mapper   = mapper;
     _lotsUnit = lotsUnit;
 }
 public PurchasesController(IPurchasesUnit purchase, IMapper mapper, ILotsUnit lots)
 {
     _purchase = purchase;
     _mapper   = mapper;
     _lots     = lots;
 }
Beispiel #4
0
 public LayingsUnit(HomeBirdContext dc, IMapper mapper, ILotsUnit lots)
 {
     _dc     = dc;
     _mapper = mapper;
     _lots   = lots;
 }
Beispiel #5
0
 public OverheadsController(IOverheadsUnit overheads, ILotsUnit lots, IMapper mapper)
 {
     _overheads = overheads;
     _lots      = lots;
     _mapper    = mapper;
 }
Beispiel #6
0
 public PurchasesUnit(HomeBirdContext dc, IMapper mapper, ILotsUnit lotsUnit)
 {
     _dc       = dc;
     _mapper   = mapper;
     _lotsUnit = lotsUnit;
 }
Beispiel #7
0
 public BroodsController(IBroodsUnit broods, ILotsUnit lots, IMapper mapper)
 {
     _broods = broods;
     _lots   = lots;
     _mapper = mapper;
 }
Beispiel #8
0
 public LotsController(ILotsUnit lots, IMapper mapper)
 {
     _lots   = lots;
     _mapper = mapper;
 }
Beispiel #9
0
 public SalesController(ISalesUnit sales, ILotsUnit lots, IMapper mapper)
 {
     _sales  = sales;
     _lots   = lots;
     _mapper = mapper;
 }