Migliorata gestione e visualizzazione notifiche
This commit is contained in:
@@ -15,6 +15,7 @@ public interface IManageDataService
|
||||
Task<List<ContactDTO>> GetContact(WhereCondContact whereCond);
|
||||
Task<ContactDTO?> GetSpecificContact(string codAnag, bool IsContact);
|
||||
|
||||
Task<List<ActivityDTO>> GetActivityTryLocalDb(WhereCondActivity whereCond);
|
||||
Task<List<ActivityDTO>> GetActivity(WhereCondActivity whereCond, bool useLocalDb = false);
|
||||
|
||||
Task InsertOrUpdate<T>(T objectToSave);
|
||||
|
||||
7
salesbook.Shared/Core/Interface/INotificationService.cs
Normal file
7
salesbook.Shared/Core/Interface/INotificationService.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace salesbook.Shared.Core.Interface;
|
||||
|
||||
public interface INotificationService
|
||||
{
|
||||
Task LoadNotification();
|
||||
void OrderNotificationList();
|
||||
}
|
||||
Reference in New Issue
Block a user