Is this the correct way to call a method from other class in one main file or is something else better? ```cs public static void Method(int a) => AnotherClass.Method(a); ```