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