kreta/Kreta.DataAccessManual/Interfaces/IFileDAL.cs
2024-03-13 00:33:46 +01:00

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);
}
}