Beispiel #1
0
 public BLLBase(IDALBase <T> dal)
 {
     this.dalService = dal;
 }
Beispiel #2
0
 public BLLBase(IDALBase <T> currentRepository)
 {
     CurrentRepository = currentRepository;
 }
Beispiel #3
0
 public IBLLBase(string typeName)
 {
     idal = DataAccess <IDALBase <T> > .GetFactory(typeName);
 }