このコントローラーのコンストラクターは、エラー "} expected" を返しています。Visual Studio はそれをコンストラクターとして認識していません。その他のエラーには、「メソッドには戻り値の型が必要です」などがあります。
このコードの何が問題になっていますか?
namespace blahblah.Controllers
{
public class HomeController : Controller
{
private IUserRepository userRepository;
public HomeController()
{ //} expected here
public Model1Container db = new Model1Container();
this.userRepository = new UserRepository(db);
}
public ActionResult Index()
{
ViewBag.Message = "Welcome to ASP.NET MVC!";
return View();
}
public ActionResult About()
{
return View();
}
}
}