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