Beispiel #1
0
 internal CotizarService.Usuario RecuperarUsuarioRestablecerClave(string strUsuario, string strEmail, Nullable <byte> intIdEmpresa)
 {
     objProxy = new CotizarService.CotizarServiceClient();
     return(objProxy.Usuario_RecuperarFiltros(new CotizarService.Usuario()
     {
         usuario = strUsuario, correoelectronico = strEmail, empresa_idempresa = intIdEmpresa
     }).FirstOrDefault());
 }
Beispiel #2
0
 internal IEnumerable <CotizarService.Usuario> RecuperarTodos()
 {
     objProxy = new CotizarService.CotizarServiceClient();
     return(objProxy.Usuario_RecuperarFiltros(new CotizarService.Usuario()));
 }
Beispiel #3
0
 internal CotizarService.Usuario RecuperarUsuarioRestablecerClave(string strUsuario, string strEmail, Nullable<byte> intIdEmpresa)
 {
     objProxy = new CotizarService.CotizarServiceClient();
     return objProxy.Usuario_RecuperarFiltros(new CotizarService.Usuario() { usuario = strUsuario, correoelectronico = strEmail, empresa_idempresa = intIdEmpresa }).FirstOrDefault();
 }
Beispiel #4
0
 internal IEnumerable<CotizarService.Usuario> RecuperarTodos()
 {
     objProxy = new CotizarService.CotizarServiceClient();
     return objProxy.Usuario_RecuperarFiltros(new CotizarService.Usuario());
 }