I need your advice. I am trying to develop a three-layer architecture in ASP.NET that shares BBL, DAL, BOboj.
Inside DAL, I collect data through _view. I wonder if I should write another Boboj for each view? I already have a BOBOj class, but it does not contain all the fields.
When inserting data, I have to use my BOboj, however, when I list, should I create a BOBOj_view class or something else ??
Data Insertion (My Columbus contains only these values)
BOboj { private int _PId; private string _Name; private int _ClassId; }
listing data
BOboj_view { private int _PId; private string _Name; private string _ClassName; }
What is the best solution
thanks.
user1865552
source share