BetterCms.Module.Blog.Services.DefaultBlogMLService.DefaultBlogMLService C# (CSharp) Method

DefaultBlogMLService() public method

public DefaultBlogMLService ( IRepository repository, IUrlService urlService, IBlogService blogService, IUnitOfWork unitOfWork, IRedirectService redirectService, IPageService pageService, ICmsConfiguration cmsConfiguration, IHttpContextAccessor httpContextAccessor ) : System
repository IRepository
urlService IUrlService
blogService IBlogService
unitOfWork IUnitOfWork
redirectService IRedirectService
pageService IPageService
cmsConfiguration ICmsConfiguration
httpContextAccessor IHttpContextAccessor
return System
        public DefaultBlogMLService(IRepository repository, IUrlService urlService, IBlogService blogService,
            IUnitOfWork unitOfWork, IRedirectService redirectService, IPageService pageService, ICmsConfiguration cmsConfiguration,
            IHttpContextAccessor httpContextAccessor)
        {
            this.repository = repository;
            this.urlService = urlService;
            this.blogService = blogService;
            this.pageService = pageService;
            this.unitOfWork = unitOfWork;
            this.redirectService = redirectService;
            this.cmsConfiguration = cmsConfiguration;
            this.httpContextAccessor = httpContextAccessor;
        }