Exemplo n.º 1
0
 public User GetById(long id)
 {
     if (id == 0)
     {
         return(new User());
     }
     return(_userRep.GetById(id));
 }