예제 #1
0
 public Student GetById(int id)
 {
     return(_studentDal.GetById(id));
 }
예제 #2
0
 public async Task <Student> GetById(int id)
 {
     return(await _studentDal.GetById(id));
 }