Esempio n. 1
0
 public TeamController(ITeamAppService teamAppService,
                       IMatchAppService matchAppService, IRafflesAppService rafflesAppService)
 {
     _teamAppService    = teamAppService;
     _matchAppService   = matchAppService;
     _rafflesAppService = rafflesAppService;
 }
 public ChatController(INotificationHandler <DomainNotification> notifications, IUserAppService userAppService, IMatchAppService matchAppService, INovoMatchAppService novoMatchAppService)
     : base(notifications)
 {
     _userAppService      = userAppService;
     _matchAppService     = matchAppService;
     _novoMatchAppService = novoMatchAppService;
 }
Esempio n. 3
0
 public MatchesController(IMatchAppService service)
 {
     _service = service;
 }