public ResponseConsultarTransportista ConsultarTransportista(RequestConsultarTransportista request) { ResponseConsultarTransportista response = new ResponseConsultarTransportista(); TransportistaBL tbl = new TransportistaBL(); response = tbl.ConsultarTransportista(request); return(response); }
public ResponseAgregarTransportista AgregarTransportista(RequestAgregarTransportista request) { ResponseAgregarTransportista response = new ResponseAgregarTransportista(); TransportistaBL tbl = new TransportistaBL(); response = tbl.AgregarTransportista(request); return(response); }