Ruby on Rails 3 からの移行を行う ASP.NET MVC フレームワークに少し慣れていません。それは ActiveRecord です。MVC での dalAccess の場所を理解するのを手伝ってください。
[HttpGet]
public ActionResult copyCampaign(int Id)
{
DALAccess dalaccess = new DALAccess();
//string newid = dalaccess.CopyOffer(Id);
string newid = dalaccess.CopyOfferByCampaignId(Id);
string type = PrepareOffer4Edit(newid);
if (type == "bundle")
return RedirectToAction("bundleStep1");
else if (type == "scratchOff")
return RedirectToAction("scratchOffStep1");
else
{
return RedirectToAction("CampaignMgmt", "CampaignMgmt");
}
}