aboutsummaryrefslogtreecommitdiff
path: root/backend/api/api/Interfaces/IFileService.cs
blob: 00dc000285f32f8790184966f120fb70e7884068 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using api.Models;

namespace api.Services
{
    public interface IFileService
    {
        FileModel Create(FileModel file);
        string GetFilePath(string id, string uploaderId);
        public FileModel getFile(string id);
        bool CheckDb();
        string GetFileId(string fullPath);
        bool CopyFile(string sourceFile, string destinacionFile);

    }
}