添加命令数据验证和其他杂项修改
This commit is contained in:
@@ -9,7 +9,7 @@ namespace Domain.AggregateModel.AppAggregate
|
||||
{
|
||||
public interface IAppRepository:IRepository<App>
|
||||
{
|
||||
void Add(App app);
|
||||
App Add(App app);
|
||||
Task<App> GetAsync(int id);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@ namespace Domain.AggregateModel.LinkAggregate
|
||||
{
|
||||
public interface ILinkRepository:IRepository<Link>
|
||||
{
|
||||
void Add(Link link);
|
||||
Link Add(Link link);
|
||||
|
||||
Task<Link> GetAsync(string shortCode);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user