Пример #1
0
        /// <summary>
        /// Default Constructor
        /// </summary>
        /// <param name="conventionsService">conventions service</param>
        /// <param name="viewModelResolutionService">view model resolution service</param>
        /// <param name="locator">locator</param>
        public ConventionsViewBinder(IConventionsService conventionsService,
											IViewModelResolutionService viewModelResolutionService,
											IExportLocator locator)
        {
            this.conventionsService = conventionsService;
            this.viewModelResolutionService = viewModelResolutionService;
            this.locator = locator;
        }
Пример #2
0
 public ConventionsController(IConventionsService conventionsService)
 {
     this.conventionsService = conventionsService;
 }
Пример #3
0
 public ConventionsApi(IConventionsService conventionsService)
 {
     this.conventionsService = conventionsService;
 }