Example #1
0
        public async Task <ActionResult> ImportExcel()
        {
            var    fileBase = Request.Form.Files["File"];
            string msg      = string.Empty;;
            var    json     = await _AppService.Import(fileBase);

            return(json);
        }