blob: c421e91416a6ec4eef00c97e0b709ea6c1041a45 (
plain)
1
2
3
4
5
6
7
8
|
using System.Collections.Generic;
using Marina.Presentation.DTO;
namespace Marina.Presentation.Views {
public interface IAvailableSlipsView {
void Display( IEnumerable< SlipDisplayDTO > availableSlips );
}
}
|