blob: 682dfe5a3a13d99a7fbedc7de05a70985623f274 (
plain)
1
2
3
4
5
6
7
8
|
using System.Collections.Generic;
using Marina.Presentation.DTO;
namespace Marina.Presentation.Views {
public interface ICurrentLeasesView {
void Display( IEnumerable< DisplayLeaseDTO > leases );
}
}
|