blob: 1baf363ee82101711f0ae1ac1891872756e55f0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using System;
namespace Marina.Domain.Interfaces {
public interface IBoat : IDomainObject {
string RegistrationNumber();
string Manufacturer();
DateTime YearOfModel();
long LengthInFeet();
}
}
|