예제 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="HtmlContentService" /> class.
 /// </summary>
 /// <param name="repository">The repository.</param>
 /// <param name="unitOfWork">The unit of work.</param>
 /// <param name="contentService">The content service.</param>
 /// <param name="securityService">The security service.</param>
 public HtmlContentService(IRepository repository, IUnitOfWork unitOfWork, Module.Root.Services.IContentService contentService, ISecurityService securityService)
 {
     this.repository = repository;
     this.unitOfWork = unitOfWork;
     this.contentService = contentService;
     this.securityService = securityService;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="HtmlContentService" /> class.
 /// </summary>
 /// <param name="repository">The repository.</param>
 /// <param name="unitOfWork">The unit of work.</param>
 /// <param name="contentService">The content service.</param>
 /// <param name="optionService">The option service.</param>
 public HtmlContentService(IRepository repository, IUnitOfWork unitOfWork,
     Module.Root.Services.IContentService contentService, IOptionService optionService)
 {
     this.repository = repository;
     this.unitOfWork = unitOfWork;
     this.contentService = contentService;
     this.optionService = optionService;
 }
예제 #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="HtmlContentService" /> class.
 /// </summary>
 /// <param name="repository">The repository.</param>
 /// <param name="unitOfWork">The unit of work.</param>
 /// <param name="contentService">The content service.</param>
 /// <param name="optionService">The option service.</param>
 public HtmlContentService(IRepository repository, IUnitOfWork unitOfWork,
                           Module.Root.Services.IContentService contentService, IOptionService optionService)
 {
     this.repository     = repository;
     this.unitOfWork     = unitOfWork;
     this.contentService = contentService;
     this.optionService  = optionService;
 }