2023-04-07 17:34:20 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using UniversityContracts.BindingModels;
|
|
|
|
|
using UniversityContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace UniversityContracts.BusinessLogicContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IReportProviderLogic
|
|
|
|
|
{
|
2023-04-09 00:00:42 +04:00
|
|
|
|
List<ReportStudentsDisciplineViewModel> GetStudentsDiscipline(List<StudentViewModel> students);
|
2023-04-07 17:34:20 +04:00
|
|
|
|
|
2023-04-08 23:37:54 +04:00
|
|
|
|
List<ReportStreamStudentEdStatPeriodViewModel> StreamStudentEdStatPeriod(ReportBindingModel model);
|
2023-04-07 17:34:20 +04:00
|
|
|
|
|
|
|
|
|
void SaveBlanksToWordFile(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
void SaveDocumentBlankToExcelFile(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
void SaveOrdersToPdfFile(ReportBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|