aurora/Aurora/Backend/Services/BaseService.cs
2019-05-19 20:21:54 -04:00

23 lines
451 B
C#

using System;
namespace Aurora.Backend.Services
{
public abstract class BaseService<T> where T : class
{
private static volatile Lazy<T> _instance = new Lazy<T>(() => CreateInstanceOfT());
public static T Instance
{
get { return _instance.Value; }
}
private static T CreateInstanceOfT()
{
return Activator.CreateInstance(typeof(T), true) as T;
}
}
}