コード例 #1
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;
 }
コード例 #2
0
 public HuntEquipmentPlanService(IHuntEquipmentPlanDao huntEquipmentPlanDao, IMarketingYearService marketingYearService, IAnnualPlanStatusService annualPlanStatusService)
 {
     _huntEquipmentPlanDao    = huntEquipmentPlanDao;
     _marketingYearService    = marketingYearService;
     _annualPlanStatusService = annualPlanStatusService;
 }