Exemple #1
0
 public OverheadsUnit(HomeBirdContext dc, IMapper mapper, ILotsUnit lotsUnit)
 {
     _dc       = dc;
     _mapper   = mapper;
     _lotsUnit = lotsUnit;
 }
Exemple #2
0
 public LotsUnit(HomeBirdContext dc, IMapper mapper)
 {
     _dc     = dc;
     _mapper = mapper;
 }
Exemple #3
0
 public IncubatorsUnit(HomeBirdContext dc, IMapper mapper)
 {
     _mapper = mapper;
     _dc     = dc;
 }
Exemple #4
0
 public LayingsUnit(HomeBirdContext dc, IMapper mapper, ILotsUnit lots)
 {
     _dc     = dc;
     _mapper = mapper;
     _lots   = lots;
 }
Exemple #5
0
 public PurchasesUnit(HomeBirdContext dc, IMapper mapper, ILotsUnit lotsUnit)
 {
     _dc       = dc;
     _mapper   = mapper;
     _lotsUnit = lotsUnit;
 }