public Restaurant(string name, User owner) { Id = Restaurants.Any() ? Restaurants.Last().Id + 1 : 0; Name = name; OwnerId = owner.Id; Rating = 0; }