16 lines
319 B
C#
16 lines
319 B
C#
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>
|
|
{
|
|
App Add(App app);
|
|
Task<App> GetAsync(int id);
|
|
}
|
|
}
|