Пример #1
0
        public FileResult ExportExcel(客戶資料ViewModel 客戶資料)
        {
            List <string> show_col = new List <string> {
                "客戶名稱", "統一編號", "電話", "傳真", "地址", "Email", "客戶分類"
            };

            return(Excel.exportExcel(repo.GetFilterItem(客戶資料.搜尋客戶名稱, 客戶資料.篩選分類, 客戶資料.sort_col, 客戶資料.isSort),
                                     "客戶資料", show_col, new List <string>()));
        }