public static ObtenerUsuarioResult ObtenerUsuario(int idusuario, ref string res)
 {
     return(AccountData.ObtenerUsuario(null, idusuario, ref res));
 }
 public static ObtenerUsuarioResult ObtenerUsuario(string username, ref string res)
 {
     return(AccountData.ObtenerUsuario(username, null, ref res));
 }