17 lines
337 B
C#
17 lines
337 B
C#
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>
|
|
{
|
|
void Add(Link link);
|
|
|
|
Task<Link> GetAsync(string shortCode);
|
|
}
|
|
}
|