public ClientForAdminController(IClientService clientService,
                                 IMonthlyCallPlanService monthlyCallPlanService,
                                 IMonthlyCallService monthlyCallService,
                                 IMonthlyBusinessTripService monthlyBusinessTripService,
                                 ApplicationContext context)
 {
     _clientService              = clientService;
     _monthlyCallPlanService     = monthlyCallPlanService;
     _monthlyCallService         = monthlyCallService;
     _monthlyBusinessTripService = monthlyBusinessTripService;
     _context = context;
 }
 public ClientForManagerController(IMonthlyCallService monthlyCallService,
                                   IManagerService managerService,
                                   IMonthlyCallPlanService monthlyCallPlanService,
                                   IAccountInformationService accountInformationService,
                                   IMonthlyBusinessTripService monthlyBusinessTripService,
                                   IWeekPlanService weekPlanService)
 {
     _monthlyCallService         = monthlyCallService;
     _managerService             = managerService;
     _monthlyCallPlanService     = monthlyCallPlanService;
     _accountInformationService  = accountInformationService;
     _monthlyBusinessTripService = monthlyBusinessTripService;
     _weekPlanService            = weekPlanService;
 }
 public MonthlyCallController(IMonthlyCallService monthlyCallService)
 {
     _monthlyCallService = monthlyCallService;
 }