28 lines
879 B
C#
28 lines
879 B
C#
using DataModels.Enums;
|
|
using DataModels.Models;
|
|
using Xceed.Words.NET;
|
|
|
|
namespace DataModels.Orders
|
|
{
|
|
public class AddStudentsOrder : AbstractOrder
|
|
{
|
|
public AddStudentsOrder(OrderType orderType, Reason reason, int number, Dean? currentDean, DateTime date, List<Student> students)
|
|
: base(orderType, reason, number, currentDean, date, students)
|
|
{
|
|
}
|
|
|
|
public AddStudentsOrder(int id, OrderType orderType, Reason reason, int number, Dean? currentDean, DateTime date, List<Student> students)
|
|
: base(id, orderType, reason, number, currentDean, date, students)
|
|
{
|
|
Id = id;
|
|
}
|
|
|
|
public override string TemplatePath => throw new NotImplementedException();
|
|
|
|
public override void FillTemplate(DocX doc)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|