2023-04-03 20:01:18 +04:00
|
|
|
|
using SchoolAgainStudyContracts.BindingModel;
|
|
|
|
|
using SchoolAgainStudyContracts.ViewModel;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SchoolAgainStudyContracts.BusinessLogicContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IReportLogic
|
|
|
|
|
{
|
2023-04-07 14:25:31 +04:00
|
|
|
|
List<ReportInterestLessonViewModel> GetInterestLesson(ReportBindingModel model);
|
2023-04-03 20:01:18 +04:00
|
|
|
|
|
|
|
|
|
|
2023-04-05 22:00:51 +04:00
|
|
|
|
List<ReportInterestViewModel> GetInterests(ReportBindingModel model);
|
2023-04-07 14:25:31 +04:00
|
|
|
|
List<ReportDiyMaterialViewModel> GetDiyMaterial(ReportBindingModel model);
|
2023-04-03 20:01:18 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<ReportLessonTaskViewModel> GetLessonTask(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SaveInterestLessonToWordFile(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SaveInterestLessonToExcelFile(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SaveInterestsToPdfFile(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
void SaveDiyMaterialToWordFile(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SaveDiyMaterialToExcelFile(ReportBindingModel model);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SaveLessonTaskToPdfFile(ReportBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|