26 lines
580 B
C#
26 lines
580 B
C#
using Domain.AggregateModel.AppAggregate;
|
|
using Domain.SeedWork;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Infrastructure.Repositories
|
|
{
|
|
public class AppRepository : IAppRepository
|
|
{
|
|
public IUnitOfWork UnitOfWork => throw new NotImplementedException();
|
|
|
|
public void Add(App app)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task<App> GetAsync(int id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|