public AccountController(IArchiveNoService archiveNoService, IUnitOfWorkAsync unitOfWork,
                          ICustomerProfileService customerProfileService, ICustomerAccounntService customerAccounntService, IHttpService httpService)
 {
     _archiveNoService        = archiveNoService;
     _unitOfWork              = unitOfWork;
     _customerProfileService  = customerProfileService;
     _customerAccounntService = customerAccounntService;
     _httpService             = httpService;
 }
 public AccountController(ApplicationUserManager userManager,
                          ISecureDataFormat <AuthenticationTicket> accessTokenFormat, IArchiveNoService archiveNoService, IUnitOfWorkAsync unitOfWork, ICustomerProfileService customerProfileService, IService <CustomerAccounnt> service, ICustomerAccounntService customerAccounntService, IHttpService httpService)
 {
     UserManager              = userManager;
     AccessTokenFormat        = accessTokenFormat;
     _archiveNoService        = archiveNoService;
     this._unitOfWork         = unitOfWork;
     _customerProfileService  = customerProfileService;
     _customerAccounntService = customerAccounntService;
     _httpService             = httpService;
 }