summaryrefslogtreecommitdiff
path: root/slips/src/app/Marina/Task/ILeaseTasks.cs
blob: f781a293fe8c113d458f1808c61488212c95c8f9 (plain)
1
2
3
4
5
6
7
8
9
10
using System.Collections.Generic;
using Marina.Presentation.DTO;

namespace Marina.Task {
	public interface ILeaseTasks {
		IEnumerable< DisplayLeaseDTO > FindAllLeasesFor( long customerId );

		DisplayResponseLineDTO RequestLeaseUsing( SubmitLeaseRequestDTO request );
	}
}