public async Task <IActionResult> Index()
        {
            var ships = await _shipRepository.GetListShip();

            return(View(ships));
        }