blob: bcdb7d11658c2ed511eade6141c381a5f38c287f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System.Collections.Generic;
using Marina.Domain.Interfaces;
namespace Marina.DataAccess.DataMappers {
public interface IBoatDataMapper {
IEnumerable< IBoat > AllBoatsFor( long customerId );
void Insert( IEnumerable< IBoat > boats, long forCustomerId );
void Update( IEnumerable< IBoat > boats, long forCustomerId );
}
}
|