S
Steve
If you wanted to get a collection of items from your BusinessObjectLayer, do
you think it would be more intuitive to see something like this:
<code>
public class Customer
{
public static Customer[] GetCustomers();
}
</code>
or use a "Manager class like this:
<code>
public static class BOLManager
{
public static Customer[] GetCustomers();
}
</code>
I'm trying to focus on making my code easy to understand just from the
source and would like to adopt habits and standard that people are used to.
Thanks!
Steve
you think it would be more intuitive to see something like this:
<code>
public class Customer
{
public static Customer[] GetCustomers();
}
</code>
or use a "Manager class like this:
<code>
public static class BOLManager
{
public static Customer[] GetCustomers();
}
</code>
I'm trying to focus on making my code easy to understand just from the
source and would like to adopt habits and standard that people are used to.
Thanks!
Steve