17 lines
323 B
C#
17 lines
323 B
C#
using System.Threading.Tasks;
|
|
using HN.Domain;
|
|
|
|
namespace HN.Infrastructure
|
|
{
|
|
public sealed class LinkRepository : Repository<Link>, ILinkRepository
|
|
{
|
|
public LinkRepository(HNDbContext context) : base(context)
|
|
{
|
|
}
|
|
|
|
public async Task AddAsync(Link link)
|
|
{
|
|
await base.AddAsync(link);
|
|
}
|
|
}
|
|
} |