23 lines
502 B
C#
23 lines
502 B
C#
|
using CsharpHttpHelper;
|
|||
|
using DeviceRepair.DataAccess;
|
|||
|
using DeviceRepair.Models;
|
|||
|
using DeviceRepair.Utils.Security;
|
|||
|
using System;
|
|||
|
|
|||
|
namespace DeviceRepairAndOptimization.Biz.AM
|
|||
|
{
|
|||
|
public class DeviceManager
|
|||
|
{
|
|||
|
private static DeviceManager manager;
|
|||
|
public static DeviceManager Instance
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
if (manager == null)
|
|||
|
manager = new DeviceManager();
|
|||
|
return manager;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|