public MonthPlansService(IMonthPlanRepository monthPlanRepository,
                          MonthPlanManger monthPlanManger,
                          IStaffUserRepository staffUserRepository
                          )
 {
     _monthPlanRepository = monthPlanRepository;
     _monthPlanManger     = monthPlanManger;
     _staffUserRepository = staffUserRepository;
 }
Example #2
0
 public MonthPlanManger(IMonthPlanRepository monthPlanRepository)
 {
     _monthPlanRepository = monthPlanRepository;
 }