示例#1
0
 public JoinLotHandler(LotAllocations lots, LotServerPicker pickingEngine, IDAFactory da, CityServerContext context)
 {
     Lots          = lots;
     PickingEngine = pickingEngine;
     DAFactory     = da;
     Context       = context;
 }
示例#2
0
 public ChangeRoommateHandler(ISessions sessions, IDAFactory da, CityServerContext context, IDataService dataService, LotServerPicker lotServers, LotAllocations lots)
 {
     this.Sessions    = sessions;
     this.DAFactory   = da;
     this.Context     = context;
     this.DataService = dataService;
     this.LotServers  = lotServers;
     this.Lots        = lots;
 }
示例#3
0
 public LotServerClosedownHandler(LotAllocations lots, IDAFactory daFactory)
 {
     this.Lots      = lots;
     this.DAFactory = daFactory;
 }