Assume an application always routes db access through a public method and then to private. I'm wondering what benefits this may offer? Below is an example.
Code:
public class ClsTest
{
private static string xMyMethod()
{
return "I accessed a database";
}
public static string MyMethod()
{
return xMyMethod();
}
}