namespace Oxite.Mvc.Controllers
{
public class TagController : Controller
{
private readonly ITagService tagService;
public TagController(ITagService tagService)
{
this.tagService = tagService;
}
请问下这个tagService要从哪边创建并传入。
还有这个项目我不知道他创建对象到底在哪里创建,
希望有人能帮我解答或是给点相关资料。