Пример #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)
 {
 }