ProfitCalculation() 공개 메소드

public ProfitCalculation ( ) : List
리턴 List
예제 #1
0
        private void btn_Updater(object sender, RoutedEventArgs e)
        {
            OptimizationHandler opHandler = new OptimizationHandler();

            //      Working when the class and list is made
            List<ProfitItem> profitProductList = opHandler.ProfitCalculation();
            LVProductSubClasses.ItemsSource = profitProductList;
        }
예제 #2
0
        public ProfitView()
        {
            InitializeComponent();
            OptimizationHandler opHandler = new OptimizationHandler();

            //      Working when the class and list is made
            List<ProfitItem> profitProductList = opHandler.ProfitCalculation();
            LVProductSubClasses.ItemsSource = profitProductList;
        }