using System.Linq.Expressions; using Template.Shared.Core.Dto; using Template.Shared.Core.Entity; using Template.Shared.Core.Interface; namespace Template.Web.Core.Services; public class ManageDataService : IManageDataService { public Task> GetTable(Expression>? whereCond = null) where T : new() { throw new NotImplementedException(); } public Task> GetActivity(Expression>? whereCond = null) { throw new NotImplementedException(); } public Task InsertOrUpdate(T objectToSave) { throw new NotImplementedException(); } public Task ClearDb() { throw new NotImplementedException(); } }