Ejemplo n.º 1
0
        public ResponseConsultarTransportista ConsultarTransportista(RequestConsultarTransportista request)
        {
            ResponseConsultarTransportista response = new ResponseConsultarTransportista();
            TransportistaDA da = new TransportistaDA();

            response = da.ConsultarTransportista(request);

            return(response);
        }
Ejemplo n.º 2
0
        public ResponseAgregarTransportista AgregarTransportista(RequestAgregarTransportista request)
        {
            ResponseAgregarTransportista response = new ResponseAgregarTransportista();


            TransportistaDA tda = new TransportistaDA();

            response = tda.AgregarTransportista(request);

            return(response);
        }
Ejemplo n.º 3
0
        public BindingList <Transportista> listarTrans()
        {
            TransportistaDA t = new TransportistaDA();

            return(t.listar());
        }