Exemplo n.º 1
0
        public bool NumeroCotizacionClienteExiste(int idSucursal, int idTipoCp, string numeroSerie, string numeroDocumento)
        {
            var cotizacliente = CotizacionclienteDao.Get(x => x.Idsucursal == idSucursal &&
                                                         x.Idtipocp == idTipoCp &&
                                                         x.Seriecotizacion == numeroSerie &&
                                                         x.Numerocotizacion == numeroDocumento);

            return(cotizacliente != null);
        }
Exemplo n.º 2
0
 public Cotizacioncliente GetCotizacioncliente(Expression <Func <Cotizacioncliente, bool> > criteria)
 {
     return(CotizacionclienteDao.Get(criteria));
 }
Exemplo n.º 3
0
 public Cotizacioncliente GetCotizacioncliente(int id)
 {
     return(CotizacionclienteDao.Get(id));
 }