I have a busincess layer that has only static methods (i made its static since there is no member variables)

For example

public class SampleBusinessLayer

{

public static string F1()

{

}

public static string F2()

{

}

}

 

I'm calling the the methods in my presentation layer or in any other layer..but my question is how memory management works the above class.