start new insurancelist operations

This commit is contained in:
MahanCh
2025-05-21 18:25:09 +03:30
parent e8a9a674a1
commit f04749043e
19 changed files with 10283 additions and 286 deletions

View File

@@ -7,7 +7,8 @@ namespace AccountManagement.Application.Contracts.Media
public interface IMediaApplication
{
MediaViewModel Get(long id);
OperationResult UploadFile(IFormFile file, string fileLabel, string relativePath, int maximumFileLength, List<string> allowedExtensions);
OperationResult UploadFile(IFormFile file, string fileLabel, string relativePath, int maximumFileLength,
List<string> allowedExtensions, string category);
OperationResult MoveFile(long mediaId, string newRelativePath);
OperationResult DeleteFile(long mediaId);
List<MediaViewModel> GetRange(IEnumerable<long> select);