示例#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;
 }