using LDBproject.Entities;

namespace LDBproject.Repositories;

public interface IUpdateRep
{
    IEnumerable<UpdateC> GetUpdateList(DateTime? dateFrom = null, DateTime? dateTo = null);

    UpdateC GetUpdateByID(int id);

    void AddUpdate(UpdateC card);

    void RemoveUpd(int cardID);
}