コード例 #1
0
ファイル: PersonRepository.cs プロジェクト: emersonhv/WebApi
 public PersonRepository()
 {
     _connection = new SqlConnection(DataBases.CrudDb.ConnectionString);
     _repo       = _connection.As <IPersonRepository>();
 }