Gestito notificationData nelle notifiche push

This commit is contained in:
2025-09-12 17:37:36 +02:00
parent 223e74c490
commit 0f3047a2b6
10 changed files with 59 additions and 23 deletions

View File

@@ -14,12 +14,12 @@ public class ManageDataService : IManageDataService
throw new NotImplementedException();
}
public Task<List<AnagClie>> GetClienti(WhereCondContact? whereCond)
public Task<List<AnagClie>> GetClienti(WhereCondContact? whereCond = null)
{
throw new NotImplementedException();
}
public Task<List<PtbPros>> GetProspect(WhereCondContact? whereCond)
public Task<List<PtbPros>> GetProspect(WhereCondContact? whereCond = null)
{
throw new NotImplementedException();
}
@@ -34,6 +34,11 @@ public class ManageDataService : IManageDataService
throw new NotImplementedException();
}
public Task<List<ActivityDTO>> GetActivityTryLocalDb(WhereCondActivity whereCond)
{
throw new NotImplementedException();
}
public Task<List<ActivityDTO>> GetActivity(WhereCondActivity whereCond, bool useLocalDb = false)
{
throw new NotImplementedException();