ImportCSV() public method

public ImportCSV ( ) : void
return void
コード例 #1
0
ファイル: BLLGetCSVTest.cs プロジェクト: Tamakloe/EF_Project
 public void ImportCSVTest()
 {
     BLLGetCSV target = new BLLGetCSV(); // TODO: Initialize to an appropriate value
     target.ImportCSV();
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
コード例 #2
0
 // [Authorize(Roles = "admin")]
 public ActionResult CreateDB()
 {
     BLLGetCSV bllgetcsv = new BLLGetCSV();
     bllgetcsv.ImportCSV();
     return View("Index");
 }