Gestiti allegati nel form
This commit is contained in:
@@ -7,5 +7,5 @@ public interface IIntegrySteupService
|
||||
//Retrieve
|
||||
Task<List<PuntoVenditaDto>> RetrievePuntiVendita();
|
||||
Task<List<JtbFasiDto>> RetrieveReparti();
|
||||
Task<List<StbActivityTypeDto>> RetrieveActivityType();
|
||||
Task<List<ActivityTypeDto>> RetrieveActivityType();
|
||||
}
|
||||
@@ -5,8 +5,11 @@ namespace SteUp.Shared.Core.Interface.System;
|
||||
public interface IAttachedService
|
||||
{
|
||||
Task<AttachedDto?> SelectImageFromCamera();
|
||||
Task<AttachedDto?> SelectImageFromGallery();
|
||||
Task<List<AttachedDto>?> SelectImageFromGallery();
|
||||
|
||||
Task<string> SaveToTempStorage(Stream file, string fileName, CancellationToken ct = default);
|
||||
Task CleanTempStorageAsync(CancellationToken ct = default);
|
||||
Task OpenFile(string fileName, string filePath);
|
||||
|
||||
Task<(string originalUrl, string thumbUrl)> SaveAndCreateThumbAsync(byte[] bytes, string fileName, CancellationToken ct = default);
|
||||
}
|
||||
Reference in New Issue
Block a user