Example #1
0
        public MainForm(
            IImageService imageService,
            IThreadsService threadsService,
            ILogerService logerService)
        {
            InitializeComponent();
            AddControlsToGroupbox(groupBox_methodChoose);

            this.imageService   = imageService;
            this.threadsService = threadsService;
            this.loger          = logerService;

            loger.Info(String.Format("Prawidlowa inicjalizacja"));
        }
Example #2
0
 public PostsService(IDeletableRepository<Post> posts, IThreadsService threadsService)
 {
     this.posts = posts;
     this.threadsService = threadsService;
 }
Example #3
0
 public ThreadsController(IThreadsService threadsService)
 {
     _threadService = threadsService;
 }
 public LastThreadsViewComponent(ICommonControllerData common, IThreadsService threads) : base(common)
 {
     this.threads = threads;
 }
 public ThreadsController(IThreadsService threadsSrvc)
 {
     this.service = threadsSrvc;
 }
Example #6
0
 public AppController(IThreadsService ThreadService)
 {
     _threadService = ThreadService;
 }