コード例 #1
0
 public ClientRepo(ICommandMapper <Client> mapper, IDbConnectionExecutables conn) : base(mapper, conn)
 {
 }
コード例 #2
0
 public GenericRepository(ICommandMapper <TEntity> mapper, IDbConnectionExecutables conn)
 {
     this.mapper = mapper;
     this.conn   = conn;
 }
コード例 #3
0
 public Custrepo(ICommandMapper <OperatorWithClient> mapper, IDbConnectionExecutables conn) : base(mapper, conn)
 {
 }
コード例 #4
0
ファイル: Repos.cs プロジェクト: JPTouron/JP.Base.Libraries
 public OperatorRepo(IDbConnectionExecutables conn)
 {
     this.conn = conn;
 }