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.
42 lines
909 B
42 lines
909 B
using System.Collections.Immutable;
|
|
using Connected.ServiceModel;
|
|
using Connected.Services;
|
|
|
|
namespace Connected.Logistics.Stock;
|
|
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();
|
|
}
|
|
}
|