namespace w230415_classes.Intf { public interface IHall { string Name { get; set; } bool AddPlace(int iRow, int iPosition); bool BookPlace(int iRow, int iPosition); bool DeletePlace(int iRow, int iPosition); IEnumerable GetNotBookedPlaceList(); IHallPlace? ReadPlace(int iRow, int iPosition); } }