using System.Linq.Expressions; using Template.Shared.Core.Dto; using Template.Shared.Core.Entity; namespace Template.Shared.Core.Interface; public interface IManageDataService { Task> GetAnagClie(Expression>? whereCond = null); Task> GetJtbComt(Expression>? whereCond = null); Task> GetPtbPros(Expression>? whereCond = null); Task> GetPtbProsRif(Expression>? whereCond = null); Task> GetStbActivity(Expression>? whereCond = null); Task> GetVtbCliePersRif(Expression>? whereCond = null); Task> GetVtbDest(Expression>? whereCond = null); Task> GetActivity(Expression>? whereCond = null); Task ClearDb(); }