Exemplo n.º 1
0
 public ICollection <ComprobanteCliente> GetLisComprobanteCliente(string nroDocumentoCliente, string tipoComprobante, string correlativo)
 {
     using (var db = new ApplicationDbContextSGO())
     {
         var response = db.usp_LisComprobanteCliente(nroDocumentoCliente, tipoComprobante, correlativo).ToList();
         return(response);
     }
 }