Ejemplo n.º 1
0
 public ReportService(IGameDao gameDao,
                      IGameHuntPlanDao gameHuntPlanDao,
                      IHuntedGameDao huntedGameDao,
                      IMarketingYearService marketingYearService,
                      IGameClassDao gameClassDao,
                      ILossGameDao lossGameDao,
                      ICatchDao catchDao,
                      IFodderDao fodderDao,
                      ILaborService laborService)
 {
     _gameDao              = gameDao;
     _gameHuntPlanDao      = gameHuntPlanDao;
     _huntedGameDao        = huntedGameDao;
     _marketingYearService = marketingYearService;
     _gameClassDao         = gameClassDao;
     _lossGameDao          = lossGameDao;
     _catchDao             = catchDao;
     _fodderDao            = fodderDao;
     _laborService         = laborService;
 }
Ejemplo n.º 2
0
 public AnnualPlanService(IEmploymentPlanDao employeePlanDao,
                          IHuntEquipmentPlanDao huntEquipmentPlanDao,
                          IPastureDao pastureDao,
                          IDeerLickerDao deerLickerDao,
                          IPulpitDao pulpitDao,
                          IWateringPlaceDao wateringPlaceDao,
                          ITrunkFoodPlanDao trunkFoodPlanDao,
                          IFieldPlanDao fieldPlanDao,
                          IFodderPlanDao fodderPlanDao,
                          IFodderDao fodderDao,
                          ICostPlanDao costPlanDao,
                          IExpenseDao expenseDao,
                          ICarcassRevenueDao carcassRevenueDao,
                          IGamePlanService gamePlanService,
                          IMarketingYearService marketingYearService,
                          IAnnualPlanStatusService annualPlanStatusService,
                          IUserService userService)
 {
     _employeePlanDao         = employeePlanDao;
     _huntEquipmentPlanDao    = huntEquipmentPlanDao;
     _pastureDao              = pastureDao;
     _deerLickerDao           = deerLickerDao;
     _pulpitDao               = pulpitDao;
     _wateringPlaceDao        = wateringPlaceDao;
     _trunkFoodPlanDao        = trunkFoodPlanDao;
     _fieldPlanDao            = fieldPlanDao;
     _fodderPlanDao           = fodderPlanDao;
     _fodderDao               = fodderDao;
     _costPlanDao             = costPlanDao;
     _expenseDao              = expenseDao;
     _carcassRevenueDao       = carcassRevenueDao;
     _gamePlanService         = gamePlanService;
     _marketingYearService    = marketingYearService;
     _annualPlanStatusService = annualPlanStatusService;
     _userService             = userService;
 }
Ejemplo n.º 3
0
 public FodderService(IFodderDao fodderDao, IMarketingYearService marketingYearService, IAnnualPlanStatusService annualPlanStatusService)
 {
     _fodderDao               = fodderDao;
     _marketingYearService    = marketingYearService;
     _annualPlanStatusService = annualPlanStatusService;
 }