Beispiel #1
0
 public CustomerRepository(ISimpleDataAccessLayer database) : base(database)
 {
 }
 public ImplantChoiceBaseRepo(ISimpleDataAccessLayer database)
 {
     Database = database;
 }
Beispiel #3
0
 public BaseRepository(ISimpleDataAccessLayer database)
 {
     this.Database = database;
 }
Beispiel #4
0
 // we need to inject these values!!!
 public InsuranceRepository(ISimpleDataAccessLayer database) : base(database)
 {
 }