Пример #1
0
 public CBet(IDistributedCache distributedCache)
 {
     betModel           = new BetModel(distributedCache);
     betResultModel     = new BetResultModel(distributedCache);
     gamblerModel       = new GamblerModel(distributedCache);
     rouletteModel      = new RouletteModel(distributedCache);
     gamblingModel      = new GamblingModel(distributedCache);
     betValidation      = new BetValidation(distributedCache);
     gamblingValidation = new GamblingValidation(distributedCache);
     cGambling          = new CGambling(distributedCache);
 }
Пример #2
0
 public GamblingValidation(IDistributedCache distributedCache)
 {
     gamblingModel = new GamblingModel(distributedCache);
 }
Пример #3
0
 public CGambling(IDistributedCache distributedCache)
 {
     gamblingModel = new GamblingModel(distributedCache);
     gamblerModel  = new GamblerModel(distributedCache);
 }