Contact Form

Name

Email *

Message *

Follow on LinkedIn
Image

24. Getters and Setters in BLL for Dealer and Customer Module



In the Previous Episode, we have successfully designed form for our Dealer or Customer Module in "BILLING AND INVENTORY MANAGEMENT SYSTEM IN C#".
In this episode, we will create Business Logic Layer (BLL) where we will add Getters and Setters for our Dealer/Customer Module.
Thus, the BLL for our Dealer/Customer Module is as follows
WATCH THE VIDEO FIRST

Create a BLL first then add the following code

        public int id { get; set; }
        public string type { get; set; }
        public string name { get; set; }
        public string email { get; set; }
        public string contact { get; set; }
        public string address { 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