public MatchController(IMatchRepository matchRepository, IGroupRepository groupRepository, IMatchBll matchBll, IGroupBll groupBll)
 {
     _repositoryMatch = matchRepository;
     _repositoryGroup = groupRepository;
     _bllMatch        = matchBll;
     _bllGroup        = groupBll;
 }
Example #2
0
 public TeamBll(ITeamRepository teamRepository, IGroupBll groupBll, IMatchBll matchBll)
 {
     _bllGroup       = groupBll;
     _repositoryTeam = teamRepository;
     _bllMatch       = matchBll;
 }