public IActionResult AddChannel(CustomerRegisterViewModel model)
        {
            var customer = _customerBusiness.AddChannel(model, ApplicationUserCurrent.AccountId);

            return(RedirectToAction("Register", new { idCustomer = customer.Id }));
        }