1 2 3 4 5 6 7 8 9 10
using System; using Marina.Infrastructure; namespace Marina.Domain.Interfaces { public interface ILeaseDuration : IDomainObject, ISpecification< IDateRange > { DateTime CalculateExpiryDateFrom( DateTime startDate ); string Name(); } }