Exemplo n.º 1
0
 private void ObtenerListaEmpleado(string IDEmpleado)
 {
     try
     {
         Usuario DatosAux = new Usuario {
             Conexion = Comun.Conexion, IDEmpleado = IDEmpleado
         };
         Usuario_Negocio ProdNeg = new Usuario_Negocio();
         this.ListaSucursales = ProdNeg.ObtenerSucursales(DatosAux);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }