Очистка using

This commit is contained in:
funa4i 2024-12-07 15:38:30 +04:00
parent 8654f437d4
commit 5b75333c03
30 changed files with 34 additions and 231 deletions

View File

@ -1,10 +1,4 @@
using System; namespace StudentProgressRecord.Entity.Enums
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StudentProgressRecord.Entity.Enums
{ {
[Flags] [Flags]
public enum Direction public enum Direction

View File

@ -1,10 +1,4 @@
using System; namespace StudentProgressRecord.Entity.Enums
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StudentProgressRecord.Entity.Enums
{ {
public enum Operations public enum Operations
{ {

View File

@ -1,10 +1,4 @@
using System; namespace StudentProgressRecord.Entity
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StudentProgressRecord.Entity
{ {
public class Marks public class Marks
{ {

View File

@ -1,11 +1,4 @@
using System; namespace StudentProgressRecord.Entity
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StudentProgressRecord.Entity
{ {
public class Statement public class Statement
{ {

View File

@ -1,10 +1,4 @@
using System; namespace StudentProgressRecord.Entity
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StudentProgressRecord.Entity
{ {
public class Student public class Student
{ {

View File

@ -1,9 +1,4 @@
using StudentProgressRecord.Entity.Enums; using StudentProgressRecord.Entity.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StudentProgressRecord.Entity namespace StudentProgressRecord.Entity
{ {

View File

@ -1,9 +1,4 @@
using StudentProgressRecord.Entity.Enums; using StudentProgressRecord.Entity.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StudentProgressRecord.Entity namespace StudentProgressRecord.Entity
{ {

View File

@ -1,10 +1,4 @@
using System; namespace StudentProgressRecord.Entity
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StudentProgressRecord.Entity
{ {
public class Teacher public class Teacher
{ {

View File

@ -1,14 +1,4 @@
using StudentProgressRecord.Repositories; using StudentProgressRecord.Repositories;
using StudentProgressRecord.RepositoryImp;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Unity; using Unity;
namespace StudentProgressRecord.Forms.FormViewEntities namespace StudentProgressRecord.Forms.FormViewEntities

View File

@ -1,16 +1,4 @@
using StudentProgressRecord.IRepositories; using StudentProgressRecord.IRepositories;
using StudentProgressRecord.Repositories;
using StudentProgressRecord.RepositoryImp;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Xml.Linq;
using Unity; using Unity;
namespace StudentProgressRecord.Forms.FormViewEntities namespace StudentProgressRecord.Forms.FormViewEntities
@ -25,7 +13,7 @@ namespace StudentProgressRecord.Forms.FormViewEntities
{ {
InitializeComponent(); InitializeComponent();
_container = container ?? throw new ArgumentNullException(nameof(container)); _container = container ?? throw new ArgumentNullException(nameof(container));
_studentTransitionRepository= studentTransitionRepository ?? throw new ArgumentNullException(nameof(studentTransitionRepository)); _studentTransitionRepository = studentTransitionRepository ?? throw new ArgumentNullException(nameof(studentTransitionRepository));
} }
private void FormViewStudentTransition_Load(object sender, EventArgs e) private void FormViewStudentTransition_Load(object sender, EventArgs e)

View File

@ -1,14 +1,4 @@
using StudentProgressRecord.Repositories; using StudentProgressRecord.Repositories;
using StudentProgressRecord.RepositoryImp;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Unity; using Unity;
namespace StudentProgressRecord.Forms.FormViewEntities namespace StudentProgressRecord.Forms.FormViewEntities

View File

@ -1,14 +1,4 @@
using StudentProgressRecord.Repositories; using StudentProgressRecord.Repositories;
using StudentProgressRecord.RepositoryImp;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Unity; using Unity;
namespace StudentProgressRecord.Forms.FormViewEntities namespace StudentProgressRecord.Forms.FormViewEntities

View File

@ -1,13 +1,4 @@
using StudentProgressRecord.Repositories; using StudentProgressRecord.Repositories;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Unity; using Unity;
namespace StudentProgressRecord.Forms.FormViewEntities namespace StudentProgressRecord.Forms.FormViewEntities
@ -74,7 +65,8 @@ namespace StudentProgressRecord.Forms.FormViewEntities
private void buttonDelete_Click(object sender, EventArgs e) private void buttonDelete_Click(object sender, EventArgs e)
{ {
if(!TryGetIdFromSelectesRow(out var findId)){ if (!TryGetIdFromSelectesRow(out var findId))
{
return; return;
} }
if (MessageBox.Show("Удалить запись?", "Удаление", if (MessageBox.Show("Удалить запись?", "Удаление",

View File

@ -1,14 +1,5 @@
using StudentProgressRecord.Entity; using StudentProgressRecord.Entity;
using StudentProgressRecord.Repositories; using StudentProgressRecord.Repositories;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace StudentProgressRecord.Forms namespace StudentProgressRecord.Forms
{ {
@ -34,7 +25,7 @@ namespace StudentProgressRecord.Forms
comboBoxSubject.ValueMember = "Id"; comboBoxSubject.ValueMember = "Id";
var list = new List<int>() {1,2,3,4,5}; var list = new List<int>() { 1, 2, 3, 4, 5 };
columnMark.DataSource = list; columnMark.DataSource = list;

View File

@ -1,15 +1,5 @@
using StudentProgressRecord.Entity; using StudentProgressRecord.Entity;
using StudentProgressRecord.Repositories; using StudentProgressRecord.Repositories;
using StudentProgressRecord.RepositoryImp;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace StudentProgressRecord.Forms namespace StudentProgressRecord.Forms
{ {

View File

@ -1,18 +1,7 @@
using Microsoft.VisualBasic.FileIO; using StudentProgressRecord.Entity;
using StudentProgressRecord.Entity;
using StudentProgressRecord.Entity.Enums; using StudentProgressRecord.Entity.Enums;
using StudentProgressRecord.IRepositories; using StudentProgressRecord.IRepositories;
using StudentProgressRecord.Repositories; using StudentProgressRecord.Repositories;
using StudentProgressRecord.RepositoryImp;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace StudentProgressRecord.Forms namespace StudentProgressRecord.Forms
{ {

View File

@ -1,16 +1,6 @@
using Microsoft.VisualBasic.FileIO; using StudentProgressRecord.Entity;
using StudentProgressRecord.Entity;
using StudentProgressRecord.Entity.Enums; using StudentProgressRecord.Entity.Enums;
using StudentProgressRecord.Repositories; using StudentProgressRecord.Repositories;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace StudentProgressRecord namespace StudentProgressRecord
{ {

View File

@ -1,15 +1,5 @@
using StudentProgressRecord.Entity; using StudentProgressRecord.Entity;
using StudentProgressRecord.Repositories; using StudentProgressRecord.Repositories;
using StudentProgressRecord.RepositoryImp;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace StudentProgressRecord.Forms namespace StudentProgressRecord.Forms
{ {

View File

@ -1,13 +1,4 @@
using StudentProgressRecord.Forms.FormViewEntities; using StudentProgressRecord.Forms.FormViewEntities;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Unity; using Unity;
namespace StudentProgressRecord namespace StudentProgressRecord

View File

@ -4,7 +4,7 @@ namespace StudentProgressRecord.Repositories
{ {
public interface IStatementRepository public interface IStatementRepository
{ {
IEnumerable<Statement> ReadStatements(long? subjectId = null, long? teacherId = null, DateTime? dateFrom = null, DateTime? dateTo=null); IEnumerable<Statement> ReadStatements(long? subjectId = null, long? teacherId = null, DateTime? dateFrom = null, DateTime? dateTo = null);
void CreateStatement(Statement statement); void CreateStatement(Statement statement);
void DeleteStatement(long id); void DeleteStatement(long id);

View File

@ -1,15 +1,10 @@
using StudentProgressRecord.Entity; using StudentProgressRecord.Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StudentProgressRecord.Repositories namespace StudentProgressRecord.Repositories
{ {
public interface IStudentRepository public interface IStudentRepository
{ {
IEnumerable<Student> ReadStudents(bool? familyPos=null, bool? domitory=null); IEnumerable<Student> ReadStudents(bool? familyPos = null, bool? domitory = null);
Student ReadStudentById(long id); Student ReadStudentById(long id);
void CreateStudent(Student student); void CreateStudent(Student student);
void UpdateStudent(Student student); void UpdateStudent(Student student);

View File

@ -1,9 +1,4 @@
using StudentProgressRecord.Entity; using StudentProgressRecord.Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StudentProgressRecord.IRepositories namespace StudentProgressRecord.IRepositories
{ {

View File

@ -1,9 +1,4 @@
using StudentProgressRecord.Entity; using StudentProgressRecord.Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StudentProgressRecord.Repositories namespace StudentProgressRecord.Repositories
{ {

View File

@ -1,9 +1,4 @@
using StudentProgressRecord.Entity; using StudentProgressRecord.Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StudentProgressRecord.Repositories namespace StudentProgressRecord.Repositories
{ {

View File

@ -1,4 +1,3 @@
using StudentProgressRecord.Forms;
using StudentProgressRecord.IRepositories; using StudentProgressRecord.IRepositories;
using StudentProgressRecord.Repositories; using StudentProgressRecord.Repositories;
using StudentProgressRecord.RepositoryImp; using StudentProgressRecord.RepositoryImp;

View File

@ -1,10 +1,5 @@
using StudentProgressRecord.Entity; using StudentProgressRecord.Entity;
using StudentProgressRecord.Repositories; using StudentProgressRecord.Repositories;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StudentProgressRecord.RepositoryImp namespace StudentProgressRecord.RepositoryImp
{ {

View File

@ -1,10 +1,5 @@
using StudentProgressRecord.Entity; using StudentProgressRecord.Entity;
using StudentProgressRecord.Repositories; using StudentProgressRecord.Repositories;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StudentProgressRecord.RepositoryImp namespace StudentProgressRecord.RepositoryImp
{ {
@ -22,7 +17,7 @@ namespace StudentProgressRecord.RepositoryImp
public Student ReadStudentById(long id) public Student ReadStudentById(long id)
{ {
return Student.CreateEntity(0, string.Empty, false , false); return Student.CreateEntity(0, string.Empty, false, false);
} }
public IEnumerable<Student> ReadStudents(bool? familyPos = null, bool? domitory = null) public IEnumerable<Student> ReadStudents(bool? familyPos = null, bool? domitory = null)

View File

@ -1,6 +1,6 @@
using StudentProgressRecord.Entity; using StudentProgressRecord.Entity;
using StudentProgressRecord.IRepositories;
using StudentProgressRecord.Entity.Enums; using StudentProgressRecord.Entity.Enums;
using StudentProgressRecord.IRepositories;
namespace StudentProgressRecord.RepositoryImp namespace StudentProgressRecord.RepositoryImp
{ {
public class StudentTransitionRepository : IStudentTransitionRepository public class StudentTransitionRepository : IStudentTransitionRepository

View File

@ -1,11 +1,6 @@
using StudentProgressRecord.Entity; using StudentProgressRecord.Entity;
using StudentProgressRecord.Entity.Enums; using StudentProgressRecord.Entity.Enums;
using StudentProgressRecord.Repositories; using StudentProgressRecord.Repositories;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StudentProgressRecord.RepositoryImp namespace StudentProgressRecord.RepositoryImp
{ {
@ -23,7 +18,7 @@ namespace StudentProgressRecord.RepositoryImp
public Subject ReadSubjectById(long id) public Subject ReadSubjectById(long id)
{ {
return Subject.CreateEntity(0, string.Empty, Direction.None); return Subject.CreateEntity(0, string.Empty, Direction.None);
} }
public IEnumerable<Subject> ReadSubjects() public IEnumerable<Subject> ReadSubjects()

View File

@ -1,10 +1,5 @@
using StudentProgressRecord.Entity; using StudentProgressRecord.Entity;
using StudentProgressRecord.Repositories; using StudentProgressRecord.Repositories;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StudentProgressRecord.RepositoryImp namespace StudentProgressRecord.RepositoryImp
{ {