public void SetShips([FromBody] SetChipsRequest model)
        {
            var ships = _parser.ParseShips(model.Coordinates);

            var battle = _service.GetCurrentBattle();

            battle.SetShips(ships);
        }