main
1using System;
2using System.Collections.Generic;
3using solidware.financials.service.domain;
4
5namespace solidware.financials.service.orm
6{
7 public interface PersonRepository
8 {
9 Person find_by(Guid id);
10 IEnumerable<Person> find_all();
11 void save(Person person);
12 }
13}