// Сводка:
// Provides the APIs for managing user in a persistence store.
//
// Параметры типа:
// TUser:
// The type encapsulating a user.
public class UserManager<TUser> : IDisposable where TUser : class
{
}
public class UserManagerWrapper<TUser> : UserManager<TUser>
{
}
public class UserManager<TUser> : IDisposable
where TUser : class
{
public void Dispose()
{
throw new NotImplementedException();
}
}
public class UserManagerWrapper<TUser> : UserManager<TUser>
where TUser : class
{
}