Beispiel #1
0
        public static UserAutentication CrearUsuario(UserAutentication user)
        {
            int respuesta = 0;

            try
            {
                respuesta = DataUser.CrearUsuario(user);
                user.Id   = respuesta;
                return(user);
            }
            catch (Exception ex)
            {
                GasLogB.CrearLogError(ex);
            }
            return(user);
        }