28 lines
499 B
C#
28 lines
499 B
C#
using ProjectGSM.Entities;
|
|
|
|
namespace ProjectGSM.Repositories.Implementations;
|
|
|
|
public class CaseRepository : ICaseRepository
|
|
{
|
|
public IEnumerable<Case> ReadCases()
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public Case ReadCaseById(int id)
|
|
{
|
|
return Case.CreateEntity(0, 0, false, 0, 0, 0, false, 0, 0, String.Empty);
|
|
}
|
|
|
|
public void CreateCase(Case caseEntity)
|
|
{
|
|
}
|
|
|
|
public void UpdateCase(Case caseEntity)
|
|
{
|
|
}
|
|
|
|
public void DeleteCase(int id)
|
|
{
|
|
}
|
|
} |