// GET: Dashboard
 public DashboardController(IInstallmentDetailService installmentDetailService, ICityService cityMasterService,
                            IBenificiaryService beneficiaryService)
 {
     _iBenificiaryService       = beneficiaryService;
     _icityService              = cityMasterService;
     _iInstallmentDetailService = installmentDetailService;
 }
Ejemplo n.º 2
0
 public BeneficiaryController(IInstallmentDetailService installmentDetailService, IBenificiaryService benificiaryService,
                              ICityService cityMasterService)
 {
     _cityMasterService        = cityMasterService;
     _benificiaryService       = benificiaryService;
     _installmentDetailService = installmentDetailService;
 }
 public APIWorkFlowController(IUserService userService, IBenificiaryService benificiaryService, IInstallmentDetailService installmentDetailService, ICommentService iCommentService)
 {
     _benificiaryService       = benificiaryService;
     _userService              = userService;
     _installmentDetailService = installmentDetailService;
     _iCommentService          = iCommentService;
 }
Ejemplo n.º 4
0
 public WorkFlowController(IInstallmentDetailService installmentDetailService, IBenificiaryService benificiaryService, IWorkFlowStagesService iWorkFlowStagesService, ICommentService icommentService,
                           IInstallmentRejectionService iInstallmentRejectionService)
 {
     _iWorkFlowStagesService       = iWorkFlowStagesService;
     _benificiaryService           = benificiaryService;
     _installmentDetailService     = installmentDetailService;
     _icommentService              = icommentService;
     _iInstallmentRejectionService = iInstallmentRejectionService;
 }