Ejemplo n.º 1
0
        public CustomerModel(IWillVmService willVmService, ICustomerVmService customerVmService,
                             IMaritalStatusVmService maritalStatusService,
                             IAppLogger <CustomerModel> appLogger, SignInManager <ApplicationUser> signInManager,
                             UserManager <ApplicationUser> userManager)
        {
            _willVmService        = willVmService;
            _customerVmService    = customerVmService;
            _maritalStatusService = maritalStatusService;
            _logger        = appLogger;
            _signInManager = signInManager;
            _userManager   = userManager;

            _errorNotFound       = "Your will could not be found.";
            _errorDefaultMessage = "It appears something went wrong. Please try again later. Should you still have the same issue, please get in touch with support.";
        }
Ejemplo n.º 2
0
 public CustomerModel(ICustomerVmService servicevm, IPeopleService service)
 {
     _servicevm = servicevm;
     _service   = service;
 }