¡@

Home 

c# Programming Glossary: bll

BLL, DAL, OBJ and 3 layer architecture

http://stackoverflow.com/questions/16937221/bll-dal-obj-and-3-layer-architecture

DAL OBJ and 3 layer architecture My question is about 3 layer.. database I have to update those all fields except for the BLL. In the presentation layer I created an OBJ as well as inside.. insert into Persons Id Name ....... ....... BBL BOboj_BLL ....... ....... public bool Add BOboj_DAL obj BOboj_DAL bb_dal..

Should you use a partial class across projects

http://stackoverflow.com/questions/309939/should-you-use-a-partial-class-across-projects

I have a class library with all my database logic. My DAL BLL. I have a few web projects which will use the same database..

Business Logic Layer and Data Access layer: circular dependency

http://stackoverflow.com/questions/458098/business-logic-layer-and-data-access-layer-circular-dependency

problem. In my project I have a Business Logic Layer BLL that contains all my business rules models and OO API for the.. layer DAL contained in a separate namespace for each BLL object I have a DataClass or œRepository which executes the getById.. executes the getById and save commands. So in a way the BLL save and getById methods are a thin layer around the DataClass..