コード例 #1
0
ファイル: HomeController.cs プロジェクト: lulujing/CRS
        public ActionResult Index()
        {
            var work = new GeekHunterUnitOfWork(new GeekHunterEntities());

            ViewBag.skills = work.Skills.GetAll().ToList();
            return(View());
        }
コード例 #2
0
ファイル: CRMService.cs プロジェクト: lulujing/CRS
 public CRMService()
 {
     this.work = new GeekHunterUnitOfWork(new GeekHunterEntities());
 }