Skip to content

yousef132/School-Managament-System

Repository files navigation

School Management Project Using Clean Architecture

Endpoints

You can access the API endpoints through the following link:

Table of Contents

Introduction

This project is a full-featured school management system designed with Clean Architecture principles. It is built to be scalable, maintainable, and efficient for managing various school tasks.

Features

Project Structure

  • Core: Contains core business logic and entities.
  • Infrastructure: Handles data access and integration with external services.
  • Application: Implements application services and use cases.
  • API: Provides API endpoints for interacting with the system.
  • Services: Includes various application services.

Database Components

This section provides an overview of the stored procedures, functions, and views utilized in our program. These components are essential for various data operations, such as data retrieval and aggregation.

Functions

GetTop3InstructorSalariesByDept

  • Purpose: Retrieves the top 3 instructor salaries for each department.

  • Definition:

    CREATE FUNCTION [dbo].[GetTop3InstructorSalariesByDept]()
    RETURNS @ResultTable TABLE
    (
        DepartmentId INT,
        DepartmentNameEn VARCHAR(200),
        DepartmentNameAr NVARCHAR(200),
        InstructorId INT,
        InstructorNameEn VARCHAR(200),
        InstructorNameAr NVARCHAR(200),
        Salary DECIMAL(18,2),
        rn INT
    )
    AS
    BEGIN
        INSERT INTO @ResultTable
        SELECT 
            DepartmentId,
            DepartmentNameEn,
            DepartmentNameAr,
            InstructorId,
            InstructorNameEn,
            InstructorNameAr,
            Salary,
            rn
        FROM (
            SELECT 
                d.DeptId AS DepartmentId,
                d.NameEn AS DepartmentNameEn,
                d.NameAr AS DepartmentNameAr,
                i.InstId AS InstructorId,
                i.NameEn AS InstructorNameEn,
                i.NameAr AS InstructorNameAr,
                i.Salary,
                ROW_NUMBER() OVER (PARTITION BY d.DeptId ORDER BY i.Salary DESC) AS rn
            FROM Instructor i
            JOIN Departments d ON i.DeptId = d.DeptId
        ) AS Result
        WHERE rn <= 3;
    
        RETURN;
    END

Stored Procedures

DepartmentTotalStudentsProc

  • Purpose: Returns the total number of students in a specified department.

  • Definition:

    CREATE PROC [dbo].[DepartmentTotalStudentsProc](@DepartmentId INT)
    AS
    BEGIN
        CREATE TABLE #temp (
            DepartmentId INT,
            DepartmentNameAr NVARCHAR(200),
            DepartmentNameEn VARCHAR(200),
            StudentsCount INT
        );
    
        INSERT INTO #temp
        SELECT 
            d.DeptId AS DepartmentId,
            d.NameAr AS DepartmentNameAr,
            d.NameEn AS DepartmentNameEn,
            COUNT(s.StudId) AS StudentsCount
        FROM Departments d 
        LEFT JOIN Students s ON d.DeptId = s.DeptId
        WHERE d.DeptId = @DepartmentId
        GROUP BY d.DeptId, d.NameAr, d.NameEn;
    
        SELECT * FROM #temp;
    END

Views

DepartmentStudentsCount

  • Purpose: Provides a summary of the number of students in each department.

  • Definition:

    SELECT 
        d.DeptId AS DepartmentId, 
        d.NameAr AS DepartmentNameAr, 
        d.NameEn AS DepartmentNameEn, 
        COUNT(s.StudId) AS Students
    FROM dbo.Departments AS d 
    LEFT OUTER JOIN dbo.Students AS s ON d.DeptId = s.DeptId
    GROUP BY d.DeptId, d.NameAr, d.NameEn;
    
    

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages