Beispiel #1
0
 public CarcassRevenueService(ICarcassRevenueDao carcassRevenueDao, IHuntDao huntDao, IHuntedGameDao huntedGameDao, IGameDao gameDao, IGameClassDao gameClassDao, IMarketingYearService marketingYearService, IAnnualPlanStatusService annualPlanStatusService)
 {
     _carcassRevenueDao       = carcassRevenueDao;
     _huntDao                 = huntDao;
     _huntedGameDao           = huntedGameDao;
     _gameDao                 = gameDao;
     _gameClassDao            = gameClassDao;
     _marketingYearService    = marketingYearService;
     _annualPlanStatusService = annualPlanStatusService;
 }
Beispiel #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;
 }