G
Guest
Hi all, I have a Customers class that can be instantiated with a customerId , which causes private member vars to be populated. But I also want to simply make a call to a static method on the Customers class to get shipping addresses, avoiding the overhead of instantiating the class (with it's SQL customer lookup)
Customers.GetShippingAddresses(customerId
here's the signature
internal static DataSet GetShippingAddresses(int customerId
...................
The method is declared static; can I assume that calls to this method will not step on each other
Thanks
Customers.GetShippingAddresses(customerId
here's the signature
internal static DataSet GetShippingAddresses(int customerId
...................
The method is declared static; can I assume that calls to this method will not step on each other
Thanks