Interface IWorkshopOrderClient
A interface for the workshop client.
Namespace: Simplic.PlugIn.Logistics
Assembly: Simplic.PlugIn.Logistics.dll
Syntax
public interface IWorkshopOrderClient
Methods
| Improve this Doc View SourceGetWorkshops(Int32, Int32)
Gets workshops that have been created today.
Declaration
Task<WorkshopGraphQLDataItem> GetWorkshops(int skipVar, int takeVar)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | skipVar | |
System.Int32 | takeVar |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<WorkshopGraphQLDataItem> | A json string with all workshops. |
GetWorkshopsWithDate(DateTime, DateTime, Int32, Int32)
Gets workshops that have been created from a date span.
Declaration
Task<WorkshopGraphQLDataItem> GetWorkshopsWithDate(DateTime startDate, DateTime endDate, int skipVar, int takeVar)
Parameters
Type | Name | Description |
---|---|---|
System.DateTime | startDate | |
System.DateTime | endDate | |
System.Int32 | skipVar | |
System.Int32 | takeVar |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<WorkshopGraphQLDataItem> | A json string with all workshops. |