using System; using LFlow.Base.Interfaces; // using LFlow.Interfaces; using LFlow.Home.Models.DataModels; namespace LFlow.Home.Repositorys; public class HomeRepo : IRepo { 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 Search(HomeModel whereObj) { throw new NotImplementedException(); } public List WhereSearchId(HomeModel whereObj) { throw new NotImplementedException(); } }