예제 #1
0
        private void Button_Click_Expense(object sender, RoutedEventArgs e)
        {
            int year  = int.Parse(YearInputFolders.Text);
            int month = int.Parse(MonthInputFolders.Text);
            ExcelPopulationLogic excel = new ExcelPopulationLogic();

            excel.SeedingSharedData(year, month);
        }
예제 #2
0
        private void Button_Click(object sender, RoutedEventArgs e)
        {
            int year  = int.Parse(YearInput.Text);
            int month = int.Parse(MonthInput.Text);
            int day   = int.Parse(DayInput.Text);
            ExcelPopulationLogic excel = new ExcelPopulationLogic();

            excel.summary(year, month, day);
        }
예제 #3
0
 public MainWindow()
 {
     InitializeComponent();
     ExcelPopulationLogic excel = new ExcelPopulationLogic();
 }