using Domain.SeedWork;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Domain.AggregateModel.LinkAggregate
{
public interface ILinkRepository:IRepository
{
Link Add(Link link);
Task GetAsync(string shortCode);
}
}