You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
557 B
C#
23 lines
557 B
C#
using Sln.Iot.Repository;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SlnMesnac.Repository.service
|
|
{
|
|
public class RealReadDataService
|
|
{
|
|
private static readonly Lazy<RealReadDataService> lazy = new Lazy<RealReadDataService>(() => new RealReadDataService());
|
|
|
|
public static RealReadDataService Instance
|
|
{
|
|
get
|
|
{
|
|
return lazy.Value;
|
|
}
|
|
}
|
|
|
|
public SQLiteHelper<real_readdata> Helper = new SQLiteHelper<real_readdata>();
|
|
}
|
|
}
|