Exemple #1
0
 public VeterinaryController(IFoodBL productBL, IMapper mapper, ITransactionBL transactionBL, IUserBL userBL)
 {
     _mapper        = mapper;
     _foodBL        = productBL;
     _transactionBL = transactionBL;
     _userBL        = userBL;
 }
Exemple #2
0
 public DistributorController(IFoodBL productBL, IMapper mapper, IUserBL userBL, IFoodDataBL foodDataBL, ITransactionBL transactionBL)
 {
     _mapper        = mapper;
     _foodBL        = productBL;
     _foodDataBL    = foodDataBL;
     _transactionBL = transactionBL;
     _userBL        = userBL;
 }
Exemple #3
0
 public ProviderController(
     IFoodBL foodBL,
     IFoodDataBL foodDataBL,
     ITransactionBL transactionBL,
     ITreatmentBL treatmentBL,
     IPremisesBL premisesBL,
     IMapper mapper)
 {
     _foodBL        = foodBL;
     _foodDataBL    = foodDataBL;
     _transactionBL = transactionBL;
     _treatmentBL   = treatmentBL;
     _premisesBL    = premisesBL;
     _mapper        = mapper;
 }
Exemple #4
0
 public FarmController(
     IFoodBL foodBL,
     IFoodDataBL foodDataBL,
     IPremisesBL premisesBL,
     ITransactionBL transactionBL,
     IFoodDetailBL foodDetailBL,
     IFeedingBL feedingBL,
     IVaccineBL vaccineBL,
     IMapper mapper)
 {
     _foodBL        = foodBL;
     _foodDataBL    = foodDataBL;
     _premisesBL    = premisesBL;
     _transactionBL = transactionBL;
     _foodDetailBL  = foodDetailBL;
     _feedingBL     = feedingBL;
     _vaccineBL     = vaccineBL;
     _mapper        = mapper;
 }