using System; using LFlow.Base.Interfaces; using LFlow.User.Model.DataModel; using SqlSugar; namespace LFlow.User.Repositorys; public class UserRepo(ISqlSugarClient db) : IRepo { public UserModel Delete(string id) { throw new NotImplementedException(); } public UserModel Get(string id) { return new UserModel { UserID = id, UserName = "Test User", UserNickName = "Tester", EmailAddress = "Test@Ling.chat", }; } public UserModel SaveOrUpdate(UserModel entity, bool isUpdate) { throw new NotImplementedException(); } public List Search(UserModel whereObj) { throw new NotImplementedException(); } public List WhereSearchId(UserModel whereObj) { throw new NotImplementedException(); } }