예제 #1
0
파일: MUDHelper.cs 프로젝트: Sorrien/RPGMUD
 public MUDHelper(IMUDDataAccess dataAccess, IReplicationLogic replicationLogic, ICellLogic cellLogic)
 {
     _mudDataAccess    = dataAccess;
     _replicationLogic = replicationLogic;
     _cellLogic        = cellLogic;
 }
예제 #2
0
 public ReplicationLogic(IHubContext <MUDHub> messageHubContext, IMUDDataAccess mudDataAccess)
 {
     _messageHubContext = messageHubContext;
     _mudDataAccess     = mudDataAccess;
 }
예제 #3
0
파일: CellLogic.cs 프로젝트: Sorrien/RPGMUD
 public CellLogic(IMUDDataAccess mudDataAccess)
 {
     _mudDataAccess = mudDataAccess;
 }