ProjectExams/Project/Project/Repositories/IStatementRepository.cs
2024-12-22 22:20:57 +04:00

10 lines
197 B
C#

using Project.Entities;
namespace Project.Repositories;
public interface IStatementRepository
{
void CreateStatement(Statement statement);
IEnumerable<Statement> GetAllStatements();
}