Пример #1
0
 public SectionBusinessManager(IMapper mapper, ISectionManager sectionManager,
                               ISectionFieldManager sectionFieldManager)
 {
     _mapper              = mapper;
     _sectionManager      = sectionManager;
     _sectionFieldManager = sectionFieldManager;
 }
Пример #2
0
 public ScrapListAPI(ISectionManager sectionManager, IShelfManager shelfManager,
                     IBookManager bookManager, IScrapListManager scrapListManager)
 {
     this.sectionManager   = sectionManager;
     this.shelfManager     = shelfManager;
     this.bookManager      = bookManager;
     this.scrapListManager = scrapListManager;
 }
Пример #3
0
        public LoginViewModel(ISectionManager manager, IAccountProvider accProvider)
        {
            this.sectionManager  = manager;
            this.accountProvider = accProvider;

            this.RegisterCommand         = new Command(RegisterCommand_Execute);
            this.LoginLogoutCommand      = new Command(LoginLogoutCommand_Execute);
            this.SwitchToRegisterCommand = new Command(SwitchToRegisterCommand_Execute);
            var task = Refresh();
        }
        public SettingsViewModel(ISectionManager manager, IAccountProvider accProvider, IShareProvider shProvider)
        {
            this.sectionManager  = manager;
            this.accountProvider = accProvider;
            this.shareProvider   = shProvider;

            this.ShareCommand           = new Command(ShareCommand_Execute);
            this.RateReview             = new RateRaviewViewModel();
            this.SendFeedbackCommand    = new Command(SendFeedbackCommand_Execute);
            this.ShowRateControlCommand = new Command(ShowRateControlCommand_Execute);
            var task = Refresh();
        }
        public HistoryViewModel(ISectionManager manager, IHistoryProvider hiProvider, CurrentCheckProvider currCheckProvider)
        {
            this.sectionManager       = manager;
            this.historyProvider      = hiProvider;
            this.currentCheckProvider = currCheckProvider;

            this.ClearCommand             = new Command(ClearCommand_Execute);
            this.OpenReportPreviewCommand = new Command <HistoryItem>(OpenReportPreviewCommand_Execute);
            this.DeleteItemCommand        = new Command <HistoryItem>(DeleteItemCommand_Execute);
            this.GoToCheckViewCommand     = new Command(GoToCheckViewCommand_Execute);
            this.GoToAccountViewCommand   = new Command(GoToAccountViewCommand_Execute);
            var task = Refresh();
        }
Пример #6
0
        public CheckViewModel(ISectionManager manager, IHistoryProvider hiProvider, CurrentCheckProvider currCheckProvider)
        {
            this.sectionManager       = manager;
            this.historyProvider      = hiProvider;
            this.currentCheckProvider = currCheckProvider;

            this.OpenFileCommand             = new Command(OpenFileCommand_Execute);
            this.ShowAddFiltersDialogCommand = new Command(ShowAddFiltersDialogCommand_Execute);
            this.SaveFileCommand             = new Command(SaveFileCommand_Execute);
            this.CheckCommand        = new Command(CheckCommand_Execute);
            this.SelectDomainCommand = new Command <Domain>(SelectDomainCommand_Execute);
            this.SelectLayerCommand  = new Command <LayerByDomain>(SelectLayerCommand_Execute);
            currentCheckProvider.ReportStatusChanged += Instance_ReportStatusChanged;
            var task = Refresh();
        }
Пример #7
0
 public UccountBusinessManager(IMapper mapper,
                               IUccountManager uccountManager,
                               IUccountSectionManager uccountSectionManager,
                               IUccountSectionFieldManager uccountSectionFieldManager,
                               IUccountServiceManager uccountServiceManager,
                               ICompanyManager companyManager,
                               ISectionManager sectionManager)
 {
     _mapper                     = mapper;
     _uccountManager             = uccountManager;
     _uccountSectionManager      = uccountSectionManager;
     _uccountSectionFieldManager = uccountSectionFieldManager;
     _uccountServiceManager      = uccountServiceManager;
     _companyManager             = companyManager;
     _sectionManager             = sectionManager;
 }
Пример #8
0
        public CompanyBusinessManager(IMapper mapper,
                                      ISectionManager sectionManager,
                                      ICompanyManager companyManager,
                                      ICompanyAddressManager companyAddressManager,
                                      ICompanySectionManager companySectionManager,
                                      ICompanySectionFieldManager companySectionFieldManager)
        {
            _mapper = mapper;

            //_sectionManager = sectionManager;

            _companyManager             = companyManager;
            _companyAddressManager      = companyAddressManager;
            _companySectionManager      = companySectionManager;
            _companySectionFieldManager = companySectionFieldManager;
        }
 public SectionController(ISectionManager sectionManager)
 {
     this.sectionManager = sectionManager;
 }
 public SectionController(ISectionManager SectionManager)
 {
     _SectionManager = SectionManager;
 }
Пример #11
0
 public SectionController(IRequestContext requestContext, ISectionManager sectionManager, IMapper mapper)
 {
     _sectionManager = sectionManager;
     _requestContext = requestContext;
     _mapper         = mapper;
 }
Пример #12
0
 public LibraryAPI(ISectionManager sectionManager, IShelfManager shelfManager, IBookManager bookManager)
 {
     this.sectionManager = sectionManager;
     this.shelfManager   = shelfManager;
     this.bookManager    = bookManager;
 }