public void Update(Team team)
 {
     _teamDal.Update(team);
 }
Exemple #2
0
 public bool Update(Team entity)
 {
     return(_teamDal.Update(entity));
 }