Click here to Skip to main content
15,914,500 members

Comments by Bandaru Laxman (Top 2 by date)

Bandaru Laxman 1-Mar-16 4:39am View    
Deleted
Hi Jim,

You just need to pass the customer object to your Data Access Layers method.

public class Customer
{
field1; field2;.... field100;
}

Business layer:
public someMethod{
Customer objCust = new Customer ();
objCust.field1 = val1;
.
.
.
objCust.field100 = val100;

DAL.test(objCust);
}


DAL:

public test(Customer objCust)
{
Your Database Operations...
}
Bandaru Laxman 1-Mar-16 4:28am View    
Can you give us the error?