29 lines
411 B
C#
29 lines
411 B
C#
|
using LDBproject.Entities;
|
|||
|
|
|||
|
namespace LDBproject.Repositories.Implementations;
|
|||
|
|
|||
|
public class UpdateR : IUpdateRep
|
|||
|
{
|
|||
|
public UpdateR()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public UpdateC GetUpdateByID(int id)
|
|||
|
{
|
|||
|
return null;
|
|||
|
}
|
|||
|
|
|||
|
public void AddUpdate(UpdateC update)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public void RemoveUpd(int Id)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public IEnumerable<UpdateC> GetUpdateList()
|
|||
|
{
|
|||
|
return [];
|
|||
|
}
|
|||
|
}
|