public MatchAddController(IMatchAdd AddMatch, IMatches match, IPlayers iPlayers, IMatchParticipant iMP)
 {
     _AddMatch   = AddMatch;
     _match      = match;
     _allPlayers = iPlayers;
     _allMP      = iMP;
 }
Пример #2
0
 public MatchesController(IMatches iMatches, IMatchParticipant imatchParticipant, IPlayers iPlayers)
 {
     _allMatchParticipant = imatchParticipant;
     _allMatches          = iMatches;
     _allPlayers          = iPlayers;
 }