This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -0,0 +1,25 @@
using System.Web.Mvc;
using Kreta.BusinessLogic.Helpers;
using Kreta.Resources;
using Kreta.Web.Areas.Hianyzas.Models;
using Kreta.Web.Helpers;
namespace Kreta.Web.Areas.Hianyzas.Logic
{
public class MulasztasKeresoLogic
{
public static ActionResult ExportTanulokMulasztasai(MulasztasSearchModel model)
{
var memoryStream = new MulasztasHelper(ConnectionTypeExtensions.GetActiveSessionConnectionType()).GetTanulokTantargyaiEsPedagogusaiExcelExport(model.ConvertModelToCo());
var result = new FileStreamResult(memoryStream, Core.Constants.ContentTypes.Xlsx) { FileDownloadName = HianyzasResource.TanulokMulasztasaiExportFileName };
return result;
}
public static ActionResult ExportTanorakonNemJelenlevok(MulasztasSearchModel model)
{
var memoryStream = new MulasztasHelper(ConnectionTypeExtensions.GetActiveSessionConnectionType()).GetTanorakonNemJelenlevokExcelExport(model.ConvertModelToCo());
var result = new FileStreamResult(memoryStream, Core.Constants.ContentTypes.Xlsx) { FileDownloadName = HianyzasResource.TanorakonNemJelenlevokExportFileName };
return result;
}
}
}