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
548 B
C#
23 lines
548 B
C#
using Sln.Iot.Repository;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SlnMesnac.Repository.service.Impl
|
|
{
|
|
public class RealReadDataImpl
|
|
{
|
|
private static readonly Lazy<RealReadDataImpl> lazy = new Lazy<RealReadDataImpl>(() => new RealReadDataImpl());
|
|
|
|
public static RealReadDataImpl Instance
|
|
{
|
|
get
|
|
{
|
|
return lazy.Value;
|
|
}
|
|
}
|
|
|
|
public SQLiteHelper<real_readdata> _helper = new SQLiteHelper<real_readdata>();
|
|
}
|
|
}
|