Exemplo n.º 1
0
        public IHttpActionResult GetByBoatType(BoatType boatType)
        {
            DriverService driverService = CreateDriverService();
            var           drivers       = driverService.GetDriversByBoatType(boatType);

            return(Ok(drivers));
        }