9 lines
240 B
C#
9 lines
240 B
C#
namespace SPMS.Application.Interfaces;
|
|
|
|
public interface IFileStorageService
|
|
{
|
|
Task<string> SaveAsync(long serviceId, string fileName, Stream fileStream);
|
|
Task DeleteAsync(string filePath);
|
|
string GetFileUrl(string filePath);
|
|
}
|