Exemple #1
0
 public Facade()
 {
     _haikwan   = new Haikwan();
     _decrypt   = new Decrypt();
     _taxProof  = new TaxProof();
     _fileStore = new FileStore();
 }
Exemple #2
0
 public void Store(TaxProof taxProof)
 {
     Console.WriteLine("Saving taxProof instance to file!");
     Console.WriteLine($"TaxProof.TaxNo = {taxProof.TaxNo},");
     Console.WriteLine($"TaxProof.Money = {taxProof.Money},");
     Console.WriteLine($"TaxProof.PaymentData = {taxProof.PaymentData}!");
     Console.WriteLine(Const.LINE_BREAK);
 }