public UserRepository(IStringEncryptor encryptor, IDapperSampleContext dapperSampleContext, System.Data.IDbTransaction transaction = null)
     : base(dapperSampleContext, transaction)
 {
     this.encryptor = encryptor;
 }
Example #2
0
 public TestConfig(IDapperSampleContext testAppDataContext)
 {
     this.testAppDataContext = testAppDataContext;
 }
Example #3
0
 public TestRepository(IDapperSampleContext dapperSampleContext, System.Data.IDbTransaction transaction = null)
     : base(dapperSampleContext, transaction)
 {
 }
Example #4
0
 public RoleConfig(IDapperSampleContext roleAppDataContext)
 {
     this.roleAppDataContext = roleAppDataContext;
 }
Example #5
0
 public UserConfig(IDapperSampleContext userAppDataContext)
 {
     this.userAppDataContext = userAppDataContext;
 }