Exemplo n.º 1
0
 public Game GetById(int id)
 {
     // Transactional islemleri ve kontroller
     _loggerService.Log();
     return(_gameDal.GetById(id));
 }
Exemplo n.º 2
0
 public Game GetById(int Id)
 {
     return(_gameDal.GetById(p => p.Id == Id));
 }