Untitled
public static class ServiceLocator<T> where T : class { private static T _value; public static T Get() { return _value; } public static T Set(T value) { _value = value; return _value; } }
Leave a Comment
public static class ServiceLocator<T> where T : class { private static T _value; public static T Get() { return _value; } public static T Set(T value) { _value = value; return _value; } }