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> GetAnagClie(Expression>? whereCond = null) { throw new NotImplementedException(); } public Task> GetJtbComt(Expression>? whereCond = null) { throw new NotImplementedException(); } public Task> GetPtbPros(Expression>? whereCond = null) { throw new NotImplementedException(); } public Task> GetPtbProsRif(Expression>? whereCond = null) { throw new NotImplementedException(); } public Task> GetStbActivity(Expression>? whereCond = null) { throw new NotImplementedException(); } public Task> GetVtbCliePersRif(Expression>? whereCond = null) { throw new NotImplementedException(); } public Task> GetVtbDest(Expression>? whereCond = null) { throw new NotImplementedException(); } public Task> GetActivity(Expression>? whereCond = null) { throw new NotImplementedException(); } }