コード例 #1
0
ファイル: TankController.cs プロジェクト: ryansull/TankMapper
        public ActionResult Load(HttpPostedFileBase file)
        {
            var dataContext = new SpreadSheetLoad();
            dataContext.LoadTanks(_repo, file);

            return View();
        }