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); } }