using BBWY.Controls;

namespace BBWY.Client.Views.FinancialTerminal
{
    /// <summary>
    /// ProcurementAuditExcelExport.xaml 的交互逻辑
    /// </summary>
    public partial class ProcurementAuditExcelExport : BWindow
    {
        public ProcurementAuditExcelExport()
        {
            InitializeComponent();
        }

        /// <summary>
        /// 当前表格内容=0,资金类型汇总=1
        /// </summary>
        public int Type { get; private set; }

        private void BButton_Click(object sender, System.Windows.RoutedEventArgs e)
        {
            Type = 0;
            DialogResult = true;
            Close();
        }

        private void BButton_Click_1(object sender, System.Windows.RoutedEventArgs e)
        {
            Type = 1;
            DialogResult = true;
            Close();
        }
    }
}