public JsonResult CreateAccount(AccountCUViewModel accountCUViewModel) { if (accountCUViewModel.Accion == "Create") { Account account = BuildToAccount(accountCUViewModel); Guid newAccountId = _accountProcessor.CreateAccount(account); return(GetJsonResultGenericModel(String.Format("Se ha creado el nuevo contacto con el id {0}.", newAccountId), true)); } return(GetJsonResultGenericModel("Error en la acción del formulario.")); }