public DefaultGameBuilder(MahjongBuddyDbContext context)
 {
     _context = context;
 }
Exemplo n.º 2
0
 public ActiveActionsResolver(IMapper mapper, MahjongBuddyDbContext context)
 {
     _mapper  = mapper;
     _context = context;
 }
 public ResultPlayerTilesResolver(MahjongBuddyDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 4
0
 public Handler(MahjongBuddyDbContext context)
 {
     _context = context;
 }
Exemplo n.º 5
0
 public Handler(MahjongBuddyDbContext context, IUserAccessor userAccessor)
 {
     _context      = context;
     _userAccessor = userAccessor;
 }
Exemplo n.º 6
0
 public Handler(MahjongBuddyDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public DefaultRoundTileBuilder(MahjongBuddyDbContext context)
 {
     _context = context;
 }
 public BoardTilesResolver(MahjongBuddyDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 9
0
 public DefaultTenantRoleAndUserBuilder(MahjongBuddyDbContext context)
 {
     _context = context;
 }
Exemplo n.º 10
0
 public Handler(MahjongBuddyDbContext context, UserManager <Player> userManager, IEmailSender emailSender)
 {
     _context     = context;
     _userManager = userManager;
     _emailSender = emailSender;
 }
Exemplo n.º 11
0
 public InitialDataBuilder(MahjongBuddyDbContext context)
 {
     _context = context;
 }
 public GameCodeGenerator(MahjongBuddyDbContext context)
 {
     _context = context;
 }
 public ActiveTilesCountResolver(MahjongBuddyDbContext context)
 {
     _context = context;
 }
 public DefaultUserBuilder(MahjongBuddyDbContext context, UserManager <Player> userManager)
 {
     _context     = context;
     _userManager = userManager;
 }
 public DefaultLanguagesCreator(MahjongBuddyDbContext context)
 {
     _context = context;
 }
 public TenantRoleAndUserBuilder(MahjongBuddyDbContext context, int tenantId)
 {
     _context  = context;
     _tenantId = tenantId;
 }
Exemplo n.º 17
0
 public DefaultSettingsCreator(MahjongBuddyDbContext context)
 {
     _context = context;
 }
 public DefaultEditionsCreator(MahjongBuddyDbContext context)
 {
     _context = context;
 }
Exemplo n.º 19
0
 public Handler(MahjongBuddyDbContext context, IMapper mapper, IPointsCalculator pointCalculator)
 {
     _context         = context;
     _mapper          = mapper;
     _pointCalculator = pointCalculator;
 }
Exemplo n.º 20
0
 public DefaultMjGamesCreator(MahjongBuddyDbContext context)
 {
     _context = context;
 }
 public OtherPlayersResolver(MahjongBuddyDbContext context, IMapper mapper, IUserAccessor userAccessor)
 {
     _mapper       = mapper;
     _userAccessor = userAccessor;
 }
Exemplo n.º 22
0
 public Handler(MahjongBuddyDbContext context, IUserAccessor userAccessor, IMapper mapper)
 {
     _context      = context;
     _userAccessor = userAccessor;
     _mapper       = mapper;
 }
Exemplo n.º 23
0
 public HostRoleAndUserCreator(MahjongBuddyDbContext context)
 {
     _context = context;
 }