예제 #1
0
 public GamesManager(IHubContext <MainHub> hubContext, IMapper mapper, IGamesCrudService gamesCrudService,
                     IUserCrudService userCrudService, ISessionTagCrudService sessionTagCrudService, ITagCrudService tagCrudService)
 {
     this.hubContext            = hubContext;
     this.mapper                = mapper;
     this.gamesCrudService      = gamesCrudService;
     this.userCrudService       = userCrudService;
     this.sessionTagCrudService = sessionTagCrudService;
     this.tagCrudService        = tagCrudService;
 }
예제 #2
0
파일: Home.cs 프로젝트: darkpchela/Fifth
 public Home(IGamesManager gameManageService, IAppAuthenticationService authenticationService, ITagCrudService tagCrudService, ISessionTagCrudService sessionTagCrudService,
             IGamesCrudService gamesCrudService, IMapper mapper)
 {
     this.gameManageService     = gameManageService;
     this.authenticationService = authenticationService;
     this.tagCrudService        = tagCrudService;
     this.sessionTagCrudService = sessionTagCrudService;
     this.gamesCrudService      = gamesCrudService;
     this.mapper = mapper;
 }
예제 #3
0
 public GameHub(IGamesManager gameProccessManager, IGamesCrudService gamesCrudService)
 {
     this.gameProccessManager = gameProccessManager;
     this.gamesCrudService    = gamesCrudService;
 }
예제 #4
0
 public SessionTagCrudService(IUnitOfWork unitOfWork, IGamesCrudService gamesCrudService)
 {
     this.unitOfWork       = unitOfWork;
     this.gamesCrudService = gamesCrudService;
 }