Esempio n. 1
0
        public IHttpActionResult GetTrailerList(
            DateTime transportD,
            string depC,
            string searchtrailerC,
            bool notdispatchgoStatus   = false,
            bool notdispatchbackStatus = false,
            bool dispatchgoStatus      = false,
            bool dispatchbackStatus    = false,
            bool otherStatus           = false
            )
        {
            var truckList = _dispatchService.GetTrailerList(transportD, depC, searchtrailerC, notdispatchgoStatus, notdispatchbackStatus, dispatchgoStatus, dispatchbackStatus, otherStatus);

            return(Ok(truckList));
        }