public IHttpActionResult GetShipHulls()
 {
     try
     {
         return(Ok(ShipDAL.GetShipHulls()));;
     }
     catch (Exception e)
     {
         return(InternalServerError(e));
     }
 }