You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
372 B
13 lines
372 B
|
3 years ago
|
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<IHallPlace> GetNotBookedPlaceList();
|
||
|
|
IHallPlace? ReadPlace(int iRow, int iPosition);
|
||
|
|
}
|
||
|
|
}
|