blob: 916269501a526ef89f9f80c87dba6c74ed9a0a30 (
plain)
1
2
3
4
5
6
7
8
|
using System.Collections.Generic;
using Marina.Presentation.DTO;
namespace Marina.Presentation.Views {
public interface IRegisteredBoatsView {
void Display( IEnumerable< BoatRegistrationDTO > boats );
}
}
|