28 lines
725 B
C#
28 lines
725 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
|
|
namespace OSS.Controllers
|
|
{
|
|
public class ProjectApplicationController : Controller
|
|
{
|
|
// GET: ProjectApplication
|
|
public ActionResult Index()
|
|
{
|
|
ViewData["CompanyTIN"] = Session["CompanyTIN"].ToString();
|
|
return View();
|
|
}
|
|
public ActionResult FinancialDetails()
|
|
{
|
|
ViewData["CompanyTIN"] = Session["CompanyTIN"].ToString();
|
|
return View();
|
|
}
|
|
public ActionResult Attachments()
|
|
{
|
|
ViewData["CompanyTIN"] = Session["CompanyTIN"].ToString();
|
|
return View();
|
|
}
|
|
}
|
|
} |