Пример #1
0
 public StoreService(IConvertor convertor, IFileSystemStore fileSystemStore, IPersonService personService, IHackingService hackingService)
 {
     this.convertor       = convertor;
     this.fileSystemStore = fileSystemStore;
     this.personService   = personService;
     this.hackingService  = hackingService;
 }
Пример #2
0
 public HackingForm(GameMenu game, IHackingService hackingService)
 {
     InitializeComponent();
     this.FormBorderStyle = FormBorderStyle.FixedSingle;
     this.MinimizeBox     = false;
     this.MaximizeBox     = false;
     _game = game;
     this.hackingService = hackingService;
     container           = UnityRegistator.GetContainer();
     HackingUpdate();
 }
Пример #3
0
 public HackingTaskForm(GameMenu game, IHackingService hackingService)
 {
     InitializeComponent();
     this.FormBorderStyle = FormBorderStyle.FixedSingle;
     this.MinimizeBox     = false;
     this.MaximizeBox     = false;
     _game           = game;
     _hackingService = hackingService;
     task            = _hackingService.HackingTasksPick(_game);
     part            = -1;
     DataUpdate();
 }
Пример #4
0
 public PersonService(IHackingService hackingService)
 {
     this.hackingService = hackingService;
 }