Exemplo n.º 1
0
        public IEnumerable <dto.ProformaGrilla> ObtenerProformasGrilla(dto.ProformaGrillaRequest r)
        {
            var Entidad      = Mapper.Map <dto.ProformaGrillaRequest, datoDto.ProformaGrillaRequest>(r);
            var DetalleQuery = new dom.Proforma().ObtenerProformasGrilla(Entidad);
            var Resultado    = Mapper.Map <IEnumerable <datoDto.ProformaGrilla>, IEnumerable <dto.ProformaGrilla> >(DetalleQuery);

            return(Resultado);
        }
Exemplo n.º 2
0
 public IEnumerable <dto.ProformaGrilla> ObtenerProformasGrilla(dto.ProformaGrillaRequest request)
 {
     return(new app.Proforma().ObtenerProformasGrilla(request));
 }