Example #1
0
 // ===========================================================================
 /// <summary>
 /// Author     : MARCO ANTONIO MARTINEZ LOPEZ
 /// Create date: Sep 24 2020  7:02AM
 /// Método que permite listar de la tabla Cliente capa PRC
 /// </summary>
 // ******************* = Método List = ******************************
 public List <Cliente_List_Result> Cliente_List(int?cli_id)
 {
     try
     {
         var Cliente = (from TCliente in BDCliente.Cliente_List(cli_id) select TCliente).ToList();
         return(Cliente);
     }
     catch (Exception Ex)
     {
         throw (Ex);
     }
 }