Example #1
0
 public ManagerController(IInsuranceContractService insuranceContractService, IBranchService branch, IMDService mdServices, IPaymentService paymentservice)
 {
     _insuranceContractService = insuranceContractService;
     _branch         = branch;
     _mdServices     = mdServices;
     _paymentservice = paymentservice;
 }
Example #2
0
        // GET: Manager

        public ManagerController(IInsuranceContractService insuranceContractService, IBranchService branch, IMDService mdServices)
        {
            _insuranceContractService = insuranceContractService;
            _branch     = branch;
            _mdServices = mdServices;
        }