12 lines
288 B
C#
12 lines
288 B
C#
using Domain.Entities;
|
|
|
|
namespace Application.Interfaces.Repositories;
|
|
|
|
public interface IKillRepository
|
|
{
|
|
public IEnumerable<Kill> GetAllKills();
|
|
|
|
public bool TryGetKillById(int id, out Kill? kill);
|
|
public void AddKill(Kill kill);
|
|
public bool RemoveKill(Kill kill);
|
|
} |