Files
qrcodeService/Domain/AggregateModel/AppAggregate/IAppRepository.cs
2021-02-23 09:51:50 +08:00

16 lines
320 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>
{
void Add(App app);
Task<App> GetAsync(int id);
}
}