summaryrefslogtreecommitdiff
path: root/slips/src/app/Marina/Domain/Interfaces/ISlip.cs
blob: 8ae576c369c61efc4daf3968897fbf1398187895 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace Marina.Domain.Interfaces {
	public interface ISlip : IDomainObject {
		IDock Dock();

		ILocation Location();

		int Width();

		int Length();

		ISlipLease LeaseTo( ICustomer customer, ILeaseDuration duration );

		bool IsLeased();
	}
}