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