Ejemplo n.º 1
0
 public Student GetByName(string name)
 {
     return(_studentDal.GetByName(name));
 }
Ejemplo n.º 2
0
 public async Task <Student> GetByName(string name)
 {
     return(await _studentDal.GetByName(name));
 }