Implementata gestione allegati
This commit is contained in:
10
salesbook.Shared/Core/Interface/IAttachedService.cs
Normal file
10
salesbook.Shared/Core/Interface/IAttachedService.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using salesbook.Shared.Core.Dto;
|
||||
|
||||
namespace salesbook.Shared.Core.Interface;
|
||||
|
||||
public interface IAttachedService
|
||||
{
|
||||
Task<AttachedDTO?> SelectImage();
|
||||
Task<AttachedDTO?> SelectFile();
|
||||
Task<AttachedDTO?> SelectPosition();
|
||||
}
|
||||
@@ -16,7 +16,13 @@ public interface IIntegryApiService
|
||||
Task<List<StbActivity>?> SaveActivity(ActivityDTO activity);
|
||||
Task<CRMCreateContactResponseDTO?> SaveContact(CRMCreateContactRequestDTO request);
|
||||
Task<CheckVatResponseDTO> CheckVat(CheckVatRequestDTO request);
|
||||
|
||||
Task UploadFile(string id, byte[] file, string fileName);
|
||||
|
||||
//Position
|
||||
Task<PositionDTO> SavePosition(PositionDTO position);
|
||||
Task<PositionDTO> RetrievePosition(string id);
|
||||
|
||||
//Google
|
||||
Task<List<IndirizzoDTO>?> Geocode(string address);
|
||||
Task<List<AutoCompleteAddressDTO>?> AutoCompleteAddress(string address, string language, string uuid);
|
||||
|
||||
Reference in New Issue
Block a user