示例#1
0
        public ActionResult <string> GetAll()
        {
            List <ShortShip> ships = _shipService.GetAll();

            return(Ok(ships));
        }