26 lines
596 B
C#
26 lines
596 B
C#
using Domain.AggregateModel.LinkAggregate;
|
|
using Domain.SeedWork;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Infrastructure.Repositories
|
|
{
|
|
public class LinkRepository : ILinkRepository
|
|
{
|
|
public IUnitOfWork UnitOfWork => throw new NotImplementedException();
|
|
|
|
public void Add(Link link)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task<Link> GetAsync(string shortCode)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|