You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Logistics/Connected.Logistics.Stock/StockService.cs

42 lines
909 B

2 years ago
using System.Collections.Immutable;
using Connected.ServiceModel;
using Connected.Services;
namespace Connected.Logistics.Stock;
2 years ago
internal sealed class StockService : EntityService<long>, IStockService
{
public StockService(IContext context) : base(context)
{
}
public Task<ImmutableList<IStockItem>> QueryItems(PrimaryKeyArgs<long> args)
{
throw new NotImplementedException();
}
public Task<ImmutableList<IStockItem>> QueryItems(QueryStockItemsArgs args)
{
throw new NotImplementedException();
}
public Task<IStock?> Select(PrimaryKeyArgs<long> args)
{
throw new NotImplementedException();
}
public Task<IStock?> Select(EntityArgs args)
{
throw new NotImplementedException();
}
public Task<IStockItem?> SelectItem(PrimaryKeyArgs<long> args)
{
throw new NotImplementedException();
}
public Task Update(UpdateStockArgs args)
{
throw new NotImplementedException();
}
}