Exemplo n.º 1
0
        public ActionResult EditNGO(int id)
        {
            NGODAO ngoDAO = new NGODAO();
            NGOAcc ngo    = ngoDAO.FetchOne(id);

            return(View("NGOForm", ngo));
        }
Exemplo n.º 2
0
        public ActionResult NGODetails(int id)
        {
            NGODAO ngoDAO = new NGODAO();
            NGOAcc ngo    = ngoDAO.FetchOne(id);

            return(View("NGODetails", ngo));
        }