public async Task <string> AddUpdateUser(AccountVM accountVM)
        {
            AccountDomainModel accountDM = new AccountDomainModel();

            AutoMapper.Mapper.Map(accountVM, accountDM);
            return(await accountBusiness.AddUpdateAccount(accountDM));
        }