Beispiel #1
0
 public ClientRepo(ICommandMapper <Client> mapper, IDbConnectionExecutables conn) : base(mapper, conn)
 {
 }
Beispiel #2
0
 public GenericRepository(ICommandMapper <TEntity> mapper, IDbConnectionExecutables conn)
 {
     this.mapper = mapper;
     this.conn   = conn;
 }
Beispiel #3
0
 public Custrepo(ICommandMapper <OperatorWithClient> mapper, IDbConnectionExecutables conn) : base(mapper, conn)
 {
 }
Beispiel #4
0
 public OperatorRepo(IDbConnectionExecutables conn)
 {
     this.conn = conn;
 }