School Commit Init

This commit is contained in:
2024-08-31 12:07:21 +03:00
commit 0b130ee18c
2801 changed files with 4720552 additions and 0 deletions
@@ -0,0 +1,18 @@
using Lab9.Models;
namespace Lab9.Repositories
{
public interface IRepository
{
public IList<News> GetAllNews();
public IList<News> GetAllNewsByDate(DateTime date);
public IList<News> GetAllNewsByCategory(string category);
public IList<News> GetAllNewsByCategoryAndDate(string category, DateTime date);
public bool ValidateUser(string username, string password);
public bool InsertNews(News news);
public bool UpdateNews(News news);
public News? GetNewsById(int id);
}
}