Skip to content

Instantly share code, notes, and snippets.

@arockusa
Created August 11, 2019 04:10
Show Gist options
  • Save arockusa/c0ebcaa59743d1fd5937832a7f728502 to your computer and use it in GitHub Desktop.
Save arockusa/c0ebcaa59743d1fd5937832a7f728502 to your computer and use it in GitHub Desktop.
test1
void fun
{
//使用薪資計算器 SalaryCalculator,引用基本公式 SalaryFormula
SalaryCalculator SC = new SalaryCalculator(new SalaryFormula());
//工時 , 時薪, 請假天數
float amount = SC.Calculate(8 * 19, 200, 8);
Console.Write("amount:" + amount);
Console.ReadKey();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment