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

ApiController() public method

public ApiController ( IBlogServices blogservices, IService tagservices, IService categoryservices, IService postservices ) : System
blogservices IBlogServices
tagservices IService
categoryservices IService
postservices IService
return System
        public ApiController(IBlogServices blogservices, IService<Tag> tagservices, IService<Category> categoryservices, IService<Post> postservices)
        {
            this.BlogServices = blogservices;
            this.TagServices = tagservices;
            this.CategoryServices = categoryservices;
            this.PostServices = postservices;
        }