public ConstructionPlanMonthDetailService(IConstructionPlanMonthDetailRepo <ConstructionPlanMonthDetail> repo,
                                           IConstructionPlanImportRepo <ConstructionPlanYear> importRepo,
                                           IMaintenanceRepo <MaintenanceItem> mRepo,
                                           IConstructionPlanMonthChartRepo <ConstructionPlanMonthChart> chartRepo, IAuthHelper authhelper)
 {
     _repo       = repo;
     _mRepo      = mRepo;
     _chartRepo  = chartRepo;
     _importRepo = importRepo;
     _authhelper = authhelper;
     _userID     = _authhelper.GetUserId();
 }
 public ConstructionPlanMonthChartService(IConstructionPlanMonthChartRepo <ConstructionPlanMonthChart> repo, IAuthHelper authhelper)
 {
     _repo       = repo;
     _authhelper = authhelper;
     _userID     = _authhelper.GetUserId();
 }