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