コード例 #1
0
        public async Task <List <Contrato> > GetCartera(string userID)
        {
            CarteraSQL      sql   = new CarteraSQL(_appSettings);
            List <Contrato> datos = await sql.CarteraGrupos(userID);

            return(datos);
        }
コード例 #2
0
        public async Task <IntegranteDetalle> GetCarteraCreditoDetalle(int contrato, string cveCliente, string userID)
        {
            CarteraSQL        sql = new CarteraSQL(_appSettings);
            IntegranteDetalle integranteDetalle = await sql.CarteraCreditoDetalle(contrato, cveCliente, userID);

            return(integranteDetalle);
            //throw new System.NotImplementedException();
        }
コード例 #3
0
        public async Task <ContratoDetalle> GetCarteraContratoDetalle(string userID, long contrato)
        {
            CarteraSQL      sql             = new CarteraSQL(_appSettings);
            ContratoDetalle contratoDetalle = await sql.CarteraContratoDetalle(userID, contrato);

            return(contratoDetalle);
            //throw new System.NotImplementedException();
        }