コード例 #1
0
ファイル: Program.cs プロジェクト: anupong-s/Transaction
        public void Run()
        {
            InstallmentUpdator updator = new InstallmentUpdator();

            while (running)
            {
                updator.UpdateInstallments();
                Thread.Sleep(5000);
            }
        }
コード例 #2
0
ファイル: UnitTest1.cs プロジェクト: anupong-s/Transaction
 public void TestInstallmentGalileo()
 {
     var installment = new InstallmentUpdator();
     installment.UpdateInstallments();
 }