예제 #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 ExpenseBaseMgr(IExpenseDao entityDao)
 {
     this.entityDao = entityDao;
 }
예제 #3
0
 public ExpenseBaseMgr(IExpenseDao entityDao)
 {
     this.entityDao = entityDao;
 }
예제 #4
0
 public ExpenseService(IExpenseDao expenseDao, IMarketingYearService marketingYearService, IAnnualPlanStatusService annualPlanStatusService)
 {
     _expenseDao              = expenseDao;
     _marketingYearService    = marketingYearService;
     _annualPlanStatusService = annualPlanStatusService;
 }
예제 #5
0
 public ExpenseMgr(IExpenseDao entityDao)
     : base(entityDao)
 {
 }
예제 #6
0
 public ExpenseMgr(IExpenseDao entityDao)
     : base(entityDao)
 {
 }