init project
This commit is contained in:
15
Domain/AggregateModel/AppAggregate/IAppRepository.cs
Normal file
15
Domain/AggregateModel/AppAggregate/IAppRepository.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using Domain.SeedWork;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Domain.AggregateModel.AppAggregate
|
||||
{
|
||||
public interface IAppRepository:IRepository<App>
|
||||
{
|
||||
void Add(App app);
|
||||
Task<App> GetAsync(int id);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user