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(); } }