internal Cruise GetOne(string id)
        {
            Cruise found = _cRepo.GetOne(id);

            if (found == null)
            {
                throw new Exception("Bad Id bossman");
            }
            return(found);
        }