Tagged Questions

4
votes
4answers
102 views

Best way to deal with conflated business and presentation code?

Considering a hypothetical situation where an old, legacy presentation library has been maintained over the years, and has gradually had more and more business logic coded into it through a process of ...
3
votes
5answers
327 views

Is a three-tier application architecture necessary?

I've worked on a project that implements a three-tier architecture with the following design: Presentation Layer - Uses PHP with an MVC framework to handle frontend presentation and business logic. ...
2
votes
2answers
143 views

Entity Manager : 3 Tier/Layer Application Question

I'm trying to create a simple three tier project and I'm on track on implementing the Business Logic layer, right now, this is how my BL looks like //The Entity/BO public Customer { public int ...
2
votes
5answers
131 views

Which is the best and appropriate way to write the code in Winforms?

What is the best way to write the code ? (1) Like directly writing the code in the button_click() event. or (2) Make the function of that code which I write in button_click() event and write this ...
1
vote
1answer
47 views

Three-Tier RIA Application - looking a sample application to learn from

I want to lean the subject architecture in c# I think learning from real simple application will be best Do u know where can i download one from? Thanks
1
vote
4answers
545 views

Three tier architecture question

I have an ASP.NET app with a three layer architecture: Presentation layer: ASP.NET Bussiness Layer: C# library. Data Access Layer: C# library with ADO.Net Entity Framework objects. Some methods ...
0
votes
1answer
54 views

Need help in GUI Layer while inserting value

I am entering customer details in my web page, in that fields are Customerid, Customername, ProductName, Quantity, Rate, Total, Discount, NetTotal. If i enter quantity and rate in respective field in ...