Tagged Questions
0
votes
1answer
60 views
How do you like the data access part (with SQL Server) of Agile Principles, Patterns, and Practices in C#
How do you think about data access code like this:
public void AddCusotmer(Cusotmer customer)
{
//save customer into database
...
// save payment type
SavePaymentType(customer);
...