Exemplo n.º 1
0
 protected DapperRepository(IDatabasecontext databaseContext)
 {
     if (databaseContext == null)
     {
         throw new ArgumentNullException("databaseContext");
     }
     this.databaseContext = databaseContext;
 }
Exemplo n.º 2
0
 public UsersRepository(IDatabasecontext dbcontext)
     : base(dbcontext)
 {
 }
Exemplo n.º 3
0
 public CommonRepository(IDatabasecontext dbcontext)
     : base(dbcontext)
 {
 }