using LDBproject.Entities;

namespace LDBproject.Repositories;

public interface IUpdateRep
{
    IEnumerable<UpdateC> GetUpdateList();

    UpdateC GetUpdateByID(int id);

    void AddUpdate(UpdateC card);

    void RemoveUpd(int cardID);
}