ImportCSV() 공개 메소드

public ImportCSV ( ) : void
리턴 void
예제 #1
0
 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");
 }