Beispiel #1
0
 public MilestoneController(
     IMilestoneService milestoneService,
     UrlHelper urlHelper,
     IExtendedProjectService projectService,
     IIndexProvider indexProvider,
     IContentOwnershipHelper contentOwnershipHelper,
     ICRMContentOwnershipService crmContentOwnershipService,
     IExtendedContentManager extendedContentManager,
     ITransactionManager transactionManager,
     IWidgetService widgetService,
     IThemeAwareViewEngine themeAwareViewEngine,
     IShapeFactory shapeFactory,
     IContentManager contentManager,
     IOrchardServices services,
     IDisplayHelperFactory displayHelperFactory,
     IBusinessUnitService businessUnitService,
     ISiteService siteService,
     IBasicDataService basicDataService,
     IContentDefinitionManager contentDefinitionManager,
     IIndexManager indexManager,
     IWorkContextAccessor workContextAccessor,
     IActivityStreamService activityStreamService,
     IContentItemDescriptorManager contentItemDescriptorManager)
     : base(ContentTypes.ProjectContentType, "Milestone_Edit", indexProvider, services, crmContentOwnershipService, transactionManager, extendedContentManager, contentManager, widgetService, themeAwareViewEngine, shapeFactory, displayHelperFactory, basicDataService, contentOwnershipHelper, activityStreamService, contentItemDescriptorManager)
 {
     this.urlHelper        = urlHelper;
     this.T                = NullLocalizer.Instance;
     this.Logger           = NullLogger.Instance;
     this.milestoneService = milestoneService;
 }
Beispiel #2
0
 public AccountController(
     ApplicationUserManager userManager,
     ApplicationSignInManager signInManager,
     IProfileService profileService,
     IUserService userService,
     IDashboardService dashboardService,
     IMilestoneService milestoneService,
     INotificationService notificationService,
     ISearchService searchService,
     IStoreService storeService,
     ITriviaService triviaService,
     IViolationService violationService)
     : base(userManager,
            profileService,
            userService,
            dashboardService,
            milestoneService,
            notificationService,
            searchService,
            storeService,
            triviaService,
            violationService)
 {
     SignInManager = signInManager;
 }
Beispiel #3
0
 public CreatorService(ICreatorRepository creatorRepository, IRemoteTwitterRepository remoteTwitterRepository,
                       IRemoteTwitchRepository remoteTwitchRepository, IRemoteYoutubeRepository remoteYoutubeRepository, IMilestoneService milestoneService)
 {
     _creatorRepository       = creatorRepository;
     _remoteTwitterRepository = remoteTwitterRepository;
     _remoteTwitchRepository  = remoteTwitchRepository;
     _remoteYoutubeRepository = remoteYoutubeRepository;
     _milestoneService        = milestoneService;
 }
 public AttachToMilestoneDriver(
     IMilestoneService milestoneService,
     ICRMContentOwnershipService contentOwnershipService,
     IExtendedProjectService projectService,
     IOrchardServices services,
     IHelperService helperService,
     IFolderService folderService)
     : base(contentOwnershipService, projectService, services, helperService, folderService)
 {
     this.milestoneService = milestoneService;
 }
Beispiel #5
0
 public MilestoneDriver(
     IBasicDataService basicDataService,
     IMilestoneService milestoneService,
     IExtendedProjectService projectService,
     IHelperService helperService,
     IFolderService folderService,
     ICRMContentOwnershipService contentOwnershipService,
     IOrchardServices services)
     : base(contentOwnershipService, projectService, services, helperService, folderService)
 {
     this.basicDataService = basicDataService;
     this.milestoneService = milestoneService;
 }
Beispiel #6
0
 public BaseController(
     ApplicationUserManager userManager,
     IProfileService profileService,
     IUserService userService,
     IDashboardService dashboardService,
     IMilestoneService milestoneService,
     INotificationService notificationService,
     ISearchService searchService,
     IStoreService storeService,
     ITriviaService triviaService,
     IViolationService violationService)
 {
     UserManager              = userManager;
     this.profileService      = profileService;
     this.userService         = userService;
     this.dashboardService    = dashboardService;
     this.milestoneService    = milestoneService;
     this.notificationService = notificationService;
     this.searchService       = searchService;
     this.storeService        = storeService;
     this.triviaService       = triviaService;
     this.violationService    = violationService;
 }
 public MilestonesController(IMilestoneService milestoneService)
 {
     _milestoneService = milestoneService;
 }
 public AttachToMilestoneStreamWriter(IContentItemDescriptorManager contentItemDescriptorManager, IMilestoneService milestoneService)
 {
     this.milestoneService             = milestoneService;
     this.contentItemDescriptorManager = contentItemDescriptorManager;
     this.T = NullLocalizer.Instance;
 }
 public HomeController(IMilestoneService service)
 {
     _service = service;
     Enforce.NotNull(() => _service);     // lambda to auto-magically get variable name for exception
 }
Beispiel #10
0
 public NewMilestoneController(IMilestoneService milestoneService, ITenderService tenderService)
 {
     _milestoneService = milestoneService;
     _tenderService    = tenderService;
 }
Beispiel #11
0
 /// <summary>
 /// Creates a new Milestone Service that allows interactivity
 /// with milestones directly through the web service
 /// </summary>
 /// <param name="goalService">The goal service through which we will interact with goals</param>
 /// <param name="milestoneService">The service we will use to interact with milestone logic</param>
 public MilestonesController(IGoalService goalService, IMilestoneService milestoneService)
 {
     this.goalService      = goalService;
     this.milestoneService = milestoneService;
 }
 public HomeController(IMilestoneService service)
 {
     _service = service;
 }
Beispiel #13
0
 public MilestoneController(ILogger <CreatorController> logger, IMapper mapper, IMilestoneService milestoneService)
 {
     _logger           = logger;
     _mapper           = mapper;
     _milestoneService = milestoneService;
 }
 public TaskController(ITaskService taskService, IMilestoneService milestoneService, ITaskPerformerService taskPerformerService)
 {
     this.taskService          = taskService;
     this.milestoneService     = milestoneService;
     this.taskPerformerService = taskPerformerService;
 }