2024-05-28 20:07:10 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using UniversityBusinessLogic.OfficePackage.HelperModels;
|
2024-05-28 21:49:47 +04:00
|
|
|
|
using UniversityBusinessLogic.OfficePackage.HelperEnums;
|
2024-05-28 20:07:10 +04:00
|
|
|
|
|
|
|
|
|
namespace UniversityBusinessLogic.OfficePackage
|
|
|
|
|
{
|
|
|
|
|
public abstract class AbstractSaveToWordStorekeeper
|
|
|
|
|
{
|
|
|
|
|
public void CreateDoc(WordInfoStorekeeper info)
|
|
|
|
|
{
|
|
|
|
|
CreateWord(info);
|
|
|
|
|
|
|
|
|
|
CreateParagraph(new WordParagraph
|
|
|
|
|
{
|
|
|
|
|
Texts = new List<(string, WordTextProperties)> { (info.Title, new WordTextProperties { Bold = true, Size = "24", }) },
|
|
|
|
|
TextProperties = new WordTextProperties
|
|
|
|
|
{
|
|
|
|
|
Size = "24",
|
|
|
|
|
JustificationType = WordJustificationType.Center
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2024-05-28 21:41:10 +04:00
|
|
|
|
foreach (var discipline in info.TeacherInfo)
|
2024-05-28 20:07:10 +04:00
|
|
|
|
{
|
|
|
|
|
CreateParagraph(new WordParagraph
|
|
|
|
|
{
|
|
|
|
|
Texts = new List<(string, WordTextProperties)>
|
|
|
|
|
{
|
|
|
|
|
("Teacher №" + discipline.TeacherId.ToString() + " - " + discipline.TeacherName, new WordTextProperties {Size = "24", Bold=true})
|
|
|
|
|
},
|
|
|
|
|
TextProperties = new WordTextProperties
|
|
|
|
|
{
|
|
|
|
|
Size = "24",
|
|
|
|
|
JustificationType = WordJustificationType.Both
|
|
|
|
|
}
|
|
|
|
|
});
|
2024-05-28 21:41:10 +04:00
|
|
|
|
foreach (var student in discipline.Students)
|
2024-05-28 20:07:10 +04:00
|
|
|
|
{
|
2024-05-29 17:55:47 +04:00
|
|
|
|
if (!string.IsNullOrEmpty(student))
|
2024-05-28 20:07:10 +04:00
|
|
|
|
{
|
|
|
|
|
CreateParagraph(new WordParagraph
|
|
|
|
|
{
|
|
|
|
|
Texts = new List<(string, WordTextProperties)> {
|
2024-05-29 17:55:47 +04:00
|
|
|
|
(student, new WordTextProperties { Size = "24" })
|
2024-05-28 20:07:10 +04:00
|
|
|
|
},
|
|
|
|
|
TextProperties = new WordTextProperties
|
|
|
|
|
{
|
|
|
|
|
Size = "24",
|
|
|
|
|
JustificationType = WordJustificationType.Both
|
|
|
|
|
}
|
|
|
|
|
});
|
2024-05-28 21:41:10 +04:00
|
|
|
|
}
|
2024-05-28 20:07:10 +04:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
SaveWord(info);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Создание doc-файла
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="info"></param>
|
|
|
|
|
protected abstract void CreateWord(WordInfoStorekeeper info);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Создание абзаца с текстом
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="paragraph"></param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
protected abstract void CreateParagraph(WordParagraph paragraph);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Сохранение файла
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="info"></param>
|
|
|
|
|
protected abstract void SaveWord(WordInfoStorekeeper info);
|
|
|
|
|
}
|
|
|
|
|
}
|