init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
25
KretaWeb/Areas/Hianyzas/Logic/MulasztasKeresoLogic.cs
Normal file
25
KretaWeb/Areas/Hianyzas/Logic/MulasztasKeresoLogic.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue