40 lines
839 B
C#
40 lines
839 B
C#
using System;
|
|
using LFlow.Base.Interfaces;
|
|
|
|
// using LFlow.Interfaces;
|
|
using LFlow.Home.Models.DataModels;
|
|
using SqlSugar;
|
|
|
|
namespace LFlow.Home.Repositorys;
|
|
|
|
public class HomeRepo(ISqlSugarClient db) : IRepo<HomeModel, string>
|
|
{
|
|
public HomeModel Delete(string id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public HomeModel Get(string id)
|
|
{
|
|
return new HomeModel
|
|
{
|
|
Id = id
|
|
};
|
|
}
|
|
|
|
public HomeModel SaveOrUpdate(HomeModel entity, bool isUpdate)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<HomeModel> Search(HomeModel whereObj)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<string> WhereSearchId(HomeModel whereObj)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|