BgEngine.Controllers.PostController.PostController C# (CSharp) Method

PostController() public method

public PostController ( IBlogServices blogservices, IService postservices, IService categoryservices, IService imageservices, IService userservices, IService tagservices ) : System
blogservices IBlogServices
postservices IService
categoryservices IService
imageservices IService
userservices IService
tagservices IService
return System
        public PostController(IBlogServices blogservices, 
                              IService<Post> postservices, 
                              IService<Category> categoryservices, 
                              IService<Image> imageservices,
                              IService<User> userservices,
                              IService<Tag> tagservices)
        {
            this.BlogServices = blogservices;
            this.PostServices = postservices;
            this.CategoryServices = categoryservices;
            this.ImageServices = imageservices;
            this.UserServices = userservices;
            this.TagServices = tagservices;
        }