Exemple #1
0
 protected DapperRepository(IDatabasecontext databaseContext)
 {
     if (databaseContext == null)
     {
         throw new ArgumentNullException("databaseContext");
     }
     this.databaseContext = databaseContext;
 }
 public UsersRepository(IDatabasecontext dbcontext)
     : base(dbcontext)
 {
 }
 public CommonRepository(IDatabasecontext dbcontext)
     : base(dbcontext)
 {
 }