31 lines
461 B
C#
31 lines
461 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Intel.Management.Module
|
|
{
|
|
public class AmtDriveService
|
|
{
|
|
public AmtDriveService()
|
|
{
|
|
|
|
|
|
}
|
|
|
|
public virtual void Invoke(AmtDriveInfo driveInfo)
|
|
{
|
|
|
|
}
|
|
|
|
public virtual object InvokeDefaultActionDynamicParameters(AmtDriveInfo driveInfo)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|