blob: a9f01dcfae92329926b11e07ef8b235a8f35994c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using Marina.Domain.Interfaces;
namespace Marina.DataAccess.DataMappers {
public interface IRegistrationDataMapper {
IRegistration For( long customerId );
void Insert( IRegistration registration, long forCustomerId );
void Update( IRegistration registration, long forCustomerId );
}
}
|