Ejemplo n.º 1
0
 public T GetEntityForKey <T>(string key, IBaseDal <T> dal) where T : class
 {
     return(dal.GetEntity(key));
 }
Ejemplo n.º 2
0
 public async Task <T> GetEntity(Expression <Func <T, bool> > whereLambda)
 {
     return(await _baseDal.GetEntity(whereLambda));
 }