public ManagerController(IInsuranceContractService insuranceContractService, IBranchService branch, IMDService mdServices, IPaymentService paymentservice) { _insuranceContractService = insuranceContractService; _branch = branch; _mdServices = mdServices; _paymentservice = paymentservice; }
public CreateInsuranceCommandHandler(IApplicationDbContext context, IInsuranceContractService insuranceContractService) { _context = context; _insuranceContractService = insuranceContractService; }
// GET: Manager public ManagerController(IInsuranceContractService insuranceContractService, IBranchService branch, IMDService mdServices) { _insuranceContractService = insuranceContractService; _branch = branch; _mdServices = mdServices; }