PIbd-24_Pruidze.I.K_DBproje.../LibraryDBproject/LDBproj/Repositories/IUpdateRep.cs

16 lines
246 B
C#

using LDBproject.Entities;
namespace LDBproject.Repositories;
public interface IUpdateRep
{
IEnumerable<UpdateC> GetUpdateList();
UpdateC GetUpdateByID(int id);
void AddUpdate(UpdateC card);
void RemoveUpd(int cardID);
}