public TournamentConfService(IMapper mapper, ID_Category DaoCategory, ID_Pool DaoPool,
                              ID_Team DaoTeam, ID_Field DaoField, ID_Player DaoPlayer, ID_Match DaoMatches)
 {
     _mapper      = mapper;
     _DaoCategory = DaoCategory;
     _DaoPool     = DaoPool;
     _DaoTeam     = DaoTeam;
     _DaoField    = DaoField;
     _DaoPlayer   = DaoPlayer;
     _DaoMatches  = DaoMatches;
 }
Esempio n. 2
0
 public ShareService(ID_Team DaoTeam)
 {
     _DaoTeam = DaoTeam;
 }