CsServer/Server/Git/XlsxToJson.cs

26 lines
587 B
C#

namespace Server.Git
{
public class XlsxToJson : AbstractGit
{
public override void ChangeScript()
{
//저장경로 : repositoryPath
//작업할것
//다운로드된 데이터 json화
//데이터 db에 업로드
//json화된 데이터 push
ExcelManager em = new ExcelManager(_repositoryPath, "TESTexl.xlsx");
em.Play();
Console.WriteLine("집에가고싶다아");
//db에 데이터를올리는것은 이곳에 작성할 예정
}
}
}