refactoring email verification
This commit is contained in:
14
Oqtane.Server/Repository/Interfaces/IFileRepository.cs
Normal file
14
Oqtane.Server/Repository/Interfaces/IFileRepository.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System.Collections.Generic;
|
||||
using Oqtane.Models;
|
||||
|
||||
namespace Oqtane.Repository
|
||||
{
|
||||
public interface IFileRepository
|
||||
{
|
||||
IEnumerable<File> GetFiles(int FolderId);
|
||||
File AddFile(File File);
|
||||
File UpdateFile(File File);
|
||||
File GetFile(int FileId);
|
||||
void DeleteFile(int FileId);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user