public ActionResult Create(CreateGameroomCommand command)
        {
            Gameroom room = new Gameroom(_repo);

            room.Create(command.Roomname, command.Gamename, command.Colour);

            return(View());
        }
Пример #2
0
 public void Insert(Gameroom gameroom)
 {
     throw new NotImplementedException();
 }