LFlow/LFlow.Home/Repositorys/HomeRepo.cs

40 lines
839 B
C#
Raw Normal View History

2024-10-09 14:45:09 +08:00
using System;
using LFlow.Base.Interfaces;
// using LFlow.Interfaces;
using LFlow.Home.Models.DataModels;
2024-10-09 17:10:05 +08:00
using SqlSugar;
2024-10-09 14:45:09 +08:00
namespace LFlow.Home.Repositorys;
2024-10-09 17:10:05 +08:00
public class HomeRepo(ISqlSugarClient db) : IRepo<HomeModel, string>
2024-10-09 14:45:09 +08:00
{
public HomeModel Delete(string id)
{
throw new NotImplementedException();
}
public HomeModel Get(string id)
{
2024-10-09 16:46:49 +08:00
return new HomeModel
{
Id = id
};
2024-10-09 14:45:09 +08:00
}
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();
}
}