namespace SPMS.Application.Interfaces; public interface IFileStorageService { Task SaveAsync(long serviceId, string fileName, Stream fileStream); Task DeleteAsync(string filePath); string GetFileUrl(string filePath); }