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