Exemple #1
0
 public Team(SerTeam team)
 {
     Id             = team.Id;
     ParticipantIds = string.Join('#', team.ParticipantIds);
     Title          = team.Title;
     BoardIds       = string.Join('#', team.BoardIds);
 }
 public void ChangeTeam(int id, SerTeam team)
 {
     _repository.ChangeTeam(id, new Team(team));
 }
 public int AddTeam(SerTeam team)
 {
     return(_repository.AddTeam(new Team(team)));
 }