Why it is not working?
This is my controller.
public class OperatorsController : BaseController
{
private readonly IOperatorService userService;
public OperatorsController(IOperatorService userService)
{
this.userService = userService;
}
public ActionResult Index()
{
return View();
}
}