public SectionBusinessManager(IMapper mapper, ISectionManager sectionManager, ISectionFieldManager sectionFieldManager) { _mapper = mapper; _sectionManager = sectionManager; _sectionFieldManager = sectionFieldManager; }
public ScrapListAPI(ISectionManager sectionManager, IShelfManager shelfManager, IBookManager bookManager, IScrapListManager scrapListManager) { this.sectionManager = sectionManager; this.shelfManager = shelfManager; this.bookManager = bookManager; this.scrapListManager = scrapListManager; }
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(); }
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(); }
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; }
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; }
public SectionController(IRequestContext requestContext, ISectionManager sectionManager, IMapper mapper) { _sectionManager = sectionManager; _requestContext = requestContext; _mapper = mapper; }
public LibraryAPI(ISectionManager sectionManager, IShelfManager shelfManager, IBookManager bookManager) { this.sectionManager = sectionManager; this.shelfManager = shelfManager; this.bookManager = bookManager; }