├── .gitignore ├── README.md └── src ├── Education-Center.sln ├── EducationCenter.Console ├── EducationCenter.Console.csproj └── Program.cs ├── EducationCenter.Data ├── Contexts │ └── EducationCenterDbContext.cs ├── EducationCenter.Data.csproj ├── IRepositories │ ├── ICourseRepository.cs │ ├── IEmployeeRepository.cs │ ├── IEmployeeSalaryRepository.cs │ ├── IGenericRepository.cs │ ├── IGroupRepository.cs │ ├── IStudentRepository.cs │ └── ITeacherRepository.cs ├── Migrations │ ├── 20220916192446_firstmig.Designer.cs │ ├── 20220916192446_firstmig.cs │ └── EducationCenterDbContextModelSnapshot.cs └── Repositories │ ├── CourseRepository.cs │ ├── EmployeeRepository.cs │ ├── EmployeeSalaryRepository.cs │ ├── GenericRepository.cs │ ├── GroupRepository.cs │ ├── StudentRepository.cs │ └── TeacherRepository.cs ├── EducationCenter.Desktop ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Assets │ ├── Icons │ │ ├── Icons.xaml │ │ └── logo.png │ └── Images │ │ ├── Portland-Public-Schools-McDaniel-High-Rebuild-Exterior-Entry-Opsis-Architecture-1200x800.jpg │ │ ├── e0e217ad29a2887c28b3732eeef3ee98.jpg │ │ └── n7ETmgDrpBGhBkD6Zj7Wf7cHITx2rmRrwmGmsZ4ANcnD4K8N6233606338569685258.jpg ├── CrudPages │ ├── CourseCreateWindow.xaml │ ├── CourseCreateWindow.xaml.cs │ ├── CourseUpdateWindow.xaml │ ├── CourseUpdateWindow.xaml.cs │ ├── EmployeeCreatePage.xaml │ ├── EmployeeCreatePage.xaml.cs │ ├── EmployeeUpdatePage.xaml │ ├── EmployeeUpdatePage.xaml.cs │ ├── StudenUpdatePage.xaml │ ├── StudenUpdatePage.xaml.cs │ ├── StudentCreatePage.xaml │ ├── StudentCreatePage.xaml.cs │ ├── TeacherCreatePage.xaml │ ├── TeacherCreatePage.xaml.cs │ ├── TeacherUpdatePage.xaml │ └── TeacherUpdatePage.xaml.cs ├── EducationCenter.Desktop.csproj ├── EducationCenter.Desktop.csproj.user ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Pages │ ├── AboutUs.xaml │ ├── AboutUs.xaml.cs │ ├── Courses.xaml │ ├── Courses.xaml.cs │ ├── Employees.xaml │ ├── Employees.xaml.cs │ ├── Groups.xaml │ ├── Groups.xaml.cs │ ├── Students.xaml │ ├── Students.xaml.cs │ ├── Teachers.xaml │ └── Teachers.xaml.cs ├── Styles │ ├── ButtonStyles.xaml │ └── RadioButtonStyle.xaml ├── Themes │ ├── DarkTheme.xaml │ └── LightTheme.xaml └── Windows │ ├── RegistrationWindow.xaml │ └── RegistrationWindow.xaml.cs ├── EducationCenter.Domain ├── Commons │ └── Auditable.cs ├── EducationCenter.Domain.csproj ├── Entities │ ├── Courses │ │ └── Course.cs │ ├── Departments │ │ ├── Employee.cs │ │ └── EmployeeSalary.cs │ ├── Groups │ │ └── Group.cs │ ├── Students │ │ └── Student.cs │ └── Teachers │ │ └── Teacher.cs └── Enums │ ├── ItemState.cs │ ├── PaymentType.cs │ └── UserType.cs ├── EducationCenter.Service ├── DTOs │ ├── Courses │ │ └── CourseForCreationDto.cs │ ├── Departaments │ │ ├── EmployeeForCreationDto.cs │ │ └── EmployeeSalaryForCreationDto.cs │ ├── Groups │ │ └── GroupForCreationDto.cs │ ├── Students │ │ └── StudentForCreationDto.cs │ └── Teachers │ │ └── TeacherForCreationDto.cs ├── EducationCenter.Service.csproj ├── Interfaces │ ├── Expression.cs │ ├── ICourseService.cs │ ├── IEmployeeSalaryService.cs │ ├── IEmployeeService.cs │ ├── IGroupService.cs │ ├── IStudentService.cs │ └── ITeacherService.cs └── Services │ ├── CourseService.cs │ ├── EmployeeSalaryService.cs │ ├── EmployeeService.cs │ ├── GroupService.cs │ ├── StudentService.cs │ └── TeacherService.cs └── packages ├── MaterialDesignColors.2.0.6 ├── .signature.p7s ├── MaterialDesignColors.2.0.6.nupkg ├── images │ └── MaterialDesignColors.Icon.png └── lib │ ├── net452 │ ├── MaterialDesignColors.dll │ └── MaterialDesignColors.pdb │ └── netcoreapp3.1 │ ├── MaterialDesignColors.dll │ └── MaterialDesignColors.pdb └── MaterialDesignThemes.4.5.0 ├── .signature.p7s ├── MaterialDesignThemes.4.5.0.nupkg ├── build ├── MaterialDesignThemes.targets └── Resources │ └── Roboto │ ├── Roboto-Black.ttf │ ├── Roboto-BlackItalic.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-BoldItalic.ttf │ ├── Roboto-Italic.ttf │ ├── Roboto-Light.ttf │ ├── Roboto-LightItalic.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-MediumItalic.ttf │ ├── Roboto-Regular.ttf │ ├── Roboto-Thin.ttf │ ├── Roboto-ThinItalic.ttf │ ├── RobotoCondensed-Bold.ttf │ ├── RobotoCondensed-BoldItalic.ttf │ ├── RobotoCondensed-Italic.ttf │ ├── RobotoCondensed-Light.ttf │ ├── RobotoCondensed-LightItalic.ttf │ └── RobotoCondensed-Regular.ttf ├── images └── MaterialDesignThemes.Icon.png ├── lib ├── net452 │ ├── MaterialDesignThemes.Wpf.dll │ ├── MaterialDesignThemes.Wpf.pdb │ └── MaterialDesignThemes.Wpf.xml └── netcoreapp3.1 │ ├── MaterialDesignThemes.Wpf.dll │ ├── MaterialDesignThemes.Wpf.pdb │ └── MaterialDesignThemes.Wpf.xml └── tools └── VisualStudioToolsManifest.xml /.gitignore: -------------------------------------------------------------------------------- 1 | *.vs 2 | *bin/ 3 | *obj/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/README.md -------------------------------------------------------------------------------- /src/Education-Center.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/Education-Center.sln -------------------------------------------------------------------------------- /src/EducationCenter.Console/EducationCenter.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Console/EducationCenter.Console.csproj -------------------------------------------------------------------------------- /src/EducationCenter.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Console/Program.cs -------------------------------------------------------------------------------- /src/EducationCenter.Data/Contexts/EducationCenterDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Data/Contexts/EducationCenterDbContext.cs -------------------------------------------------------------------------------- /src/EducationCenter.Data/EducationCenter.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Data/EducationCenter.Data.csproj -------------------------------------------------------------------------------- /src/EducationCenter.Data/IRepositories/ICourseRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Data/IRepositories/ICourseRepository.cs -------------------------------------------------------------------------------- /src/EducationCenter.Data/IRepositories/IEmployeeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Data/IRepositories/IEmployeeRepository.cs -------------------------------------------------------------------------------- /src/EducationCenter.Data/IRepositories/IEmployeeSalaryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Data/IRepositories/IEmployeeSalaryRepository.cs -------------------------------------------------------------------------------- /src/EducationCenter.Data/IRepositories/IGenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Data/IRepositories/IGenericRepository.cs -------------------------------------------------------------------------------- /src/EducationCenter.Data/IRepositories/IGroupRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Data/IRepositories/IGroupRepository.cs -------------------------------------------------------------------------------- /src/EducationCenter.Data/IRepositories/IStudentRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Data/IRepositories/IStudentRepository.cs -------------------------------------------------------------------------------- /src/EducationCenter.Data/IRepositories/ITeacherRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Data/IRepositories/ITeacherRepository.cs -------------------------------------------------------------------------------- /src/EducationCenter.Data/Migrations/20220916192446_firstmig.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Data/Migrations/20220916192446_firstmig.Designer.cs -------------------------------------------------------------------------------- /src/EducationCenter.Data/Migrations/20220916192446_firstmig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Data/Migrations/20220916192446_firstmig.cs -------------------------------------------------------------------------------- /src/EducationCenter.Data/Migrations/EducationCenterDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Data/Migrations/EducationCenterDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/EducationCenter.Data/Repositories/CourseRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Data/Repositories/CourseRepository.cs -------------------------------------------------------------------------------- /src/EducationCenter.Data/Repositories/EmployeeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Data/Repositories/EmployeeRepository.cs -------------------------------------------------------------------------------- /src/EducationCenter.Data/Repositories/EmployeeSalaryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Data/Repositories/EmployeeSalaryRepository.cs -------------------------------------------------------------------------------- /src/EducationCenter.Data/Repositories/GenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Data/Repositories/GenericRepository.cs -------------------------------------------------------------------------------- /src/EducationCenter.Data/Repositories/GroupRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Data/Repositories/GroupRepository.cs -------------------------------------------------------------------------------- /src/EducationCenter.Data/Repositories/StudentRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Data/Repositories/StudentRepository.cs -------------------------------------------------------------------------------- /src/EducationCenter.Data/Repositories/TeacherRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Data/Repositories/TeacherRepository.cs -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/App.xaml -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/App.xaml.cs -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/Assets/Icons/Icons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/Assets/Icons/Icons.xaml -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/Assets/Icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/Assets/Icons/logo.png -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/Assets/Images/Portland-Public-Schools-McDaniel-High-Rebuild-Exterior-Entry-Opsis-Architecture-1200x800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/Assets/Images/Portland-Public-Schools-McDaniel-High-Rebuild-Exterior-Entry-Opsis-Architecture-1200x800.jpg -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/Assets/Images/e0e217ad29a2887c28b3732eeef3ee98.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/Assets/Images/e0e217ad29a2887c28b3732eeef3ee98.jpg -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/Assets/Images/n7ETmgDrpBGhBkD6Zj7Wf7cHITx2rmRrwmGmsZ4ANcnD4K8N6233606338569685258.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/Assets/Images/n7ETmgDrpBGhBkD6Zj7Wf7cHITx2rmRrwmGmsZ4ANcnD4K8N6233606338569685258.jpg -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/CrudPages/CourseCreateWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/CrudPages/CourseCreateWindow.xaml -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/CrudPages/CourseCreateWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/CrudPages/CourseCreateWindow.xaml.cs -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/CrudPages/CourseUpdateWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/CrudPages/CourseUpdateWindow.xaml -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/CrudPages/CourseUpdateWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/CrudPages/CourseUpdateWindow.xaml.cs -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/CrudPages/EmployeeCreatePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/CrudPages/EmployeeCreatePage.xaml -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/CrudPages/EmployeeCreatePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/CrudPages/EmployeeCreatePage.xaml.cs -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/CrudPages/EmployeeUpdatePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/CrudPages/EmployeeUpdatePage.xaml -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/CrudPages/EmployeeUpdatePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/CrudPages/EmployeeUpdatePage.xaml.cs -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/CrudPages/StudenUpdatePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/CrudPages/StudenUpdatePage.xaml -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/CrudPages/StudenUpdatePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/CrudPages/StudenUpdatePage.xaml.cs -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/CrudPages/StudentCreatePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/CrudPages/StudentCreatePage.xaml -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/CrudPages/StudentCreatePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/CrudPages/StudentCreatePage.xaml.cs -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/CrudPages/TeacherCreatePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/CrudPages/TeacherCreatePage.xaml -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/CrudPages/TeacherCreatePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/CrudPages/TeacherCreatePage.xaml.cs -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/CrudPages/TeacherUpdatePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/CrudPages/TeacherUpdatePage.xaml -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/CrudPages/TeacherUpdatePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/CrudPages/TeacherUpdatePage.xaml.cs -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/EducationCenter.Desktop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/EducationCenter.Desktop.csproj -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/EducationCenter.Desktop.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/EducationCenter.Desktop.csproj.user -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/MainWindow.xaml -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/Pages/AboutUs.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/Pages/AboutUs.xaml -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/Pages/AboutUs.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/Pages/AboutUs.xaml.cs -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/Pages/Courses.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/Pages/Courses.xaml -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/Pages/Courses.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/Pages/Courses.xaml.cs -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/Pages/Employees.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/Pages/Employees.xaml -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/Pages/Employees.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/Pages/Employees.xaml.cs -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/Pages/Groups.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/Pages/Groups.xaml -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/Pages/Groups.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/Pages/Groups.xaml.cs -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/Pages/Students.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/Pages/Students.xaml -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/Pages/Students.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/Pages/Students.xaml.cs -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/Pages/Teachers.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/Pages/Teachers.xaml -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/Pages/Teachers.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/Pages/Teachers.xaml.cs -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/Styles/ButtonStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/Styles/ButtonStyles.xaml -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/Styles/RadioButtonStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/Styles/RadioButtonStyle.xaml -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/Themes/DarkTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/Themes/DarkTheme.xaml -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/Themes/LightTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/Themes/LightTheme.xaml -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/Windows/RegistrationWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/Windows/RegistrationWindow.xaml -------------------------------------------------------------------------------- /src/EducationCenter.Desktop/Windows/RegistrationWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Desktop/Windows/RegistrationWindow.xaml.cs -------------------------------------------------------------------------------- /src/EducationCenter.Domain/Commons/Auditable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Domain/Commons/Auditable.cs -------------------------------------------------------------------------------- /src/EducationCenter.Domain/EducationCenter.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Domain/EducationCenter.Domain.csproj -------------------------------------------------------------------------------- /src/EducationCenter.Domain/Entities/Courses/Course.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Domain/Entities/Courses/Course.cs -------------------------------------------------------------------------------- /src/EducationCenter.Domain/Entities/Departments/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Domain/Entities/Departments/Employee.cs -------------------------------------------------------------------------------- /src/EducationCenter.Domain/Entities/Departments/EmployeeSalary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Domain/Entities/Departments/EmployeeSalary.cs -------------------------------------------------------------------------------- /src/EducationCenter.Domain/Entities/Groups/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Domain/Entities/Groups/Group.cs -------------------------------------------------------------------------------- /src/EducationCenter.Domain/Entities/Students/Student.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Domain/Entities/Students/Student.cs -------------------------------------------------------------------------------- /src/EducationCenter.Domain/Entities/Teachers/Teacher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Domain/Entities/Teachers/Teacher.cs -------------------------------------------------------------------------------- /src/EducationCenter.Domain/Enums/ItemState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Domain/Enums/ItemState.cs -------------------------------------------------------------------------------- /src/EducationCenter.Domain/Enums/PaymentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Domain/Enums/PaymentType.cs -------------------------------------------------------------------------------- /src/EducationCenter.Domain/Enums/UserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Domain/Enums/UserType.cs -------------------------------------------------------------------------------- /src/EducationCenter.Service/DTOs/Courses/CourseForCreationDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Service/DTOs/Courses/CourseForCreationDto.cs -------------------------------------------------------------------------------- /src/EducationCenter.Service/DTOs/Departaments/EmployeeForCreationDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Service/DTOs/Departaments/EmployeeForCreationDto.cs -------------------------------------------------------------------------------- /src/EducationCenter.Service/DTOs/Departaments/EmployeeSalaryForCreationDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Service/DTOs/Departaments/EmployeeSalaryForCreationDto.cs -------------------------------------------------------------------------------- /src/EducationCenter.Service/DTOs/Groups/GroupForCreationDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Service/DTOs/Groups/GroupForCreationDto.cs -------------------------------------------------------------------------------- /src/EducationCenter.Service/DTOs/Students/StudentForCreationDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Service/DTOs/Students/StudentForCreationDto.cs -------------------------------------------------------------------------------- /src/EducationCenter.Service/DTOs/Teachers/TeacherForCreationDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Service/DTOs/Teachers/TeacherForCreationDto.cs -------------------------------------------------------------------------------- /src/EducationCenter.Service/EducationCenter.Service.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Service/EducationCenter.Service.csproj -------------------------------------------------------------------------------- /src/EducationCenter.Service/Interfaces/Expression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Service/Interfaces/Expression.cs -------------------------------------------------------------------------------- /src/EducationCenter.Service/Interfaces/ICourseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Service/Interfaces/ICourseService.cs -------------------------------------------------------------------------------- /src/EducationCenter.Service/Interfaces/IEmployeeSalaryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Service/Interfaces/IEmployeeSalaryService.cs -------------------------------------------------------------------------------- /src/EducationCenter.Service/Interfaces/IEmployeeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Service/Interfaces/IEmployeeService.cs -------------------------------------------------------------------------------- /src/EducationCenter.Service/Interfaces/IGroupService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Service/Interfaces/IGroupService.cs -------------------------------------------------------------------------------- /src/EducationCenter.Service/Interfaces/IStudentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Service/Interfaces/IStudentService.cs -------------------------------------------------------------------------------- /src/EducationCenter.Service/Interfaces/ITeacherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Service/Interfaces/ITeacherService.cs -------------------------------------------------------------------------------- /src/EducationCenter.Service/Services/CourseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Service/Services/CourseService.cs -------------------------------------------------------------------------------- /src/EducationCenter.Service/Services/EmployeeSalaryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Service/Services/EmployeeSalaryService.cs -------------------------------------------------------------------------------- /src/EducationCenter.Service/Services/EmployeeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Service/Services/EmployeeService.cs -------------------------------------------------------------------------------- /src/EducationCenter.Service/Services/GroupService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Service/Services/GroupService.cs -------------------------------------------------------------------------------- /src/EducationCenter.Service/Services/StudentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Service/Services/StudentService.cs -------------------------------------------------------------------------------- /src/EducationCenter.Service/Services/TeacherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/EducationCenter.Service/Services/TeacherService.cs -------------------------------------------------------------------------------- /src/packages/MaterialDesignColors.2.0.6/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignColors.2.0.6/.signature.p7s -------------------------------------------------------------------------------- /src/packages/MaterialDesignColors.2.0.6/MaterialDesignColors.2.0.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignColors.2.0.6/MaterialDesignColors.2.0.6.nupkg -------------------------------------------------------------------------------- /src/packages/MaterialDesignColors.2.0.6/images/MaterialDesignColors.Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignColors.2.0.6/images/MaterialDesignColors.Icon.png -------------------------------------------------------------------------------- /src/packages/MaterialDesignColors.2.0.6/lib/net452/MaterialDesignColors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignColors.2.0.6/lib/net452/MaterialDesignColors.dll -------------------------------------------------------------------------------- /src/packages/MaterialDesignColors.2.0.6/lib/net452/MaterialDesignColors.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignColors.2.0.6/lib/net452/MaterialDesignColors.pdb -------------------------------------------------------------------------------- /src/packages/MaterialDesignColors.2.0.6/lib/netcoreapp3.1/MaterialDesignColors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignColors.2.0.6/lib/netcoreapp3.1/MaterialDesignColors.dll -------------------------------------------------------------------------------- /src/packages/MaterialDesignColors.2.0.6/lib/netcoreapp3.1/MaterialDesignColors.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignColors.2.0.6/lib/netcoreapp3.1/MaterialDesignColors.pdb -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/.signature.p7s -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/MaterialDesignThemes.4.5.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/MaterialDesignThemes.4.5.0.nupkg -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/build/MaterialDesignThemes.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/build/MaterialDesignThemes.targets -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/Roboto-Italic.ttf -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/RobotoCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/RobotoCondensed-Bold.ttf -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/RobotoCondensed-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/RobotoCondensed-BoldItalic.ttf -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/RobotoCondensed-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/RobotoCondensed-Italic.ttf -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/RobotoCondensed-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/RobotoCondensed-Light.ttf -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/RobotoCondensed-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/RobotoCondensed-LightItalic.ttf -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/RobotoCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/build/Resources/Roboto/RobotoCondensed-Regular.ttf -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/images/MaterialDesignThemes.Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/images/MaterialDesignThemes.Icon.png -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/lib/net452/MaterialDesignThemes.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/lib/net452/MaterialDesignThemes.Wpf.dll -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/lib/net452/MaterialDesignThemes.Wpf.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/lib/net452/MaterialDesignThemes.Wpf.pdb -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/lib/net452/MaterialDesignThemes.Wpf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/lib/net452/MaterialDesignThemes.Wpf.xml -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/lib/netcoreapp3.1/MaterialDesignThemes.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/lib/netcoreapp3.1/MaterialDesignThemes.Wpf.dll -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/lib/netcoreapp3.1/MaterialDesignThemes.Wpf.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/lib/netcoreapp3.1/MaterialDesignThemes.Wpf.pdb -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/lib/netcoreapp3.1/MaterialDesignThemes.Wpf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/lib/netcoreapp3.1/MaterialDesignThemes.Wpf.xml -------------------------------------------------------------------------------- /src/packages/MaterialDesignThemes.4.5.0/tools/VisualStudioToolsManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khushboqof/education-center-crm/HEAD/src/packages/MaterialDesignThemes.4.5.0/tools/VisualStudioToolsManifest.xml --------------------------------------------------------------------------------