15 lines
252 B
C#
15 lines
252 B
C#
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);
|
|
}
|
|
}
|