Layered Application in C#

  • Thread starter Thread starter Mahenoor Mahida
  • Start date Start date
M

Mahenoor Mahida

Guest
I have created a basic console layered application in Visual C#.

Name - Product Management System

Desc - PMS is aimed to perform all the CRUD operations in a layered architecture have 5 layers :

1.Entity Layer - Defining the class structure for the application

2.Exception Layer - handling all exception properly with error messages

3.Data Access Layer (DAL) - All the CRUD data is saved in the file format using serializable attributes

4.Bussiness Login Layer (BLL) - It is responsible for the logic and validations of entire application.

5.Presentation Layer (PL) - All the UI part or the Layer that is visible on console is written in this layer.

GitHub Link - MahenoorMahida/ProductMgmtSystem

Continue reading...
 
Back
Top