init
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using Kreta.DataAccess.Interfaces;
|
||||
|
||||
namespace Kreta.DataAccessManual.Interfaces
|
||||
{
|
||||
public interface IFileDAL
|
||||
{
|
||||
IFile Get();
|
||||
|
||||
IFile Get(int id);
|
||||
|
||||
int Insert(IFile dto);
|
||||
|
||||
void Delete(int id, int userId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user