using System; namespace Chernobyl.Account.Config { /// /// Provides services related to users. /// public static class UserServices { /// /// Method which creates new users. /// /// The new user instance. public static Object UserFactory() { return new Object(); } } }