16 lines
246 B
C#
Raw Normal View History

2024-12-20 20:09:17 +04:00
using LDBproject.Entities;
namespace LDBproject.Repositories;
public interface IUpdateRep
{
IEnumerable<UpdateC> GetUpdateList();
UpdateC GetUpdateByID(int id);
void AddUpdate(UpdateC card);
void RemoveUpd(int cardID);
}