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 Add(App app); Task GetAsync(int id); } }