Contact Form

Name

Email *

Message *

Follow on LinkedIn
Image

18. Creating Getters and Setters in BLL for Product Module



In the previous video, we have successfully designed beautiful User Interface (UI) for our Product Module in our BILLING AND INVENTORY MANAGEMENT SYSTEM.
In this episode, we will create Business Logic Layer (BLL) for our Product Module. So, the Getters and Setters in our BLL Class for our Product Module is as follows

WATCH THE VIDEO FIRST

BLL for Product Module


       //Getters and Setters for Product Module
        public int id { get; set; }
        public string name { get; set; }
        public string category { get; set; }
        public string description { get; set; }
        public decimal rate { get; set; }
        public decimal qty { get; set; }
        public DateTime added_date { get; set; }
        public int added_by { get; set; }


Thank you so much for reading and watching my tutorial. If you want to see more posts like this, then don't forget to SUBSCRIBE.

If you want to START from the beginning of this course, then CLICK HERE.

BILLING AND INVENTORY MANAGEMENT SYSTEM IN C#

Comments