18 lines
323 B
C#
18 lines
323 B
C#
using Lab3.Database.Repository.Interfaces;
|
|
|
|
namespace Lab3.Forms
|
|
{
|
|
public partial class CreateForm : Form
|
|
{
|
|
public CreateForm(IStudentRepository student)
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void CreateForm_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|