@@ -428,6 +428,12 @@ namespace CallCenterApi.Interface.Controllers
{
return Success(Configs.GetValue(key));
}
+
+ public ActionResult Export()
+ {
+ var bt = new NPOIHelper().ExportToWord();
+ return File(bt, "application/msword", DateTime.Now.Ticks.ToString() + ".doc");
+ }