-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProgram.cs
27 lines (25 loc) · 847 Bytes
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using System;
using Isu.Classes;
using IsuExtra.Classes;
using IsuExtra.Services;
using IsuService = IsuExtra.Services.IsuService;
using Student = IsuExtra.Classes.Student;
namespace IsuExtra
{
internal static class Program
{
private static void Main()
{
/*var scheduleService = new ScheduleService();
var studentStreamService = new StudentStreamService(scheduleService);
var service = new IsuService(studentStreamService);
Group group1 = service.AddGroup(new GroupName.GroupNameBuilder()
.WithTag("M3")
.WithCourseNumber(2)
.WithGroupNumber("12")
.Build());
Student student = service.AddStudent(group1, "12");
Console.WriteLine(service.FindGroup(group1.Name)); */
}
}
}