Class CreateVorgangPosition<T>
Wrapper object to create a IVorgangPosition
public class CreateVorgangPosition<T> where T : IVorgangPosition, new()
Type Parameters
T
- Inheritance
-
objectCreateVorgangPosition<T>
Constructors
CreateVorgangPosition(string, double, string, string, string, T?)
Initializes a new instance of the CreateVorgangPosition<T> class.
public CreateVorgangPosition(string artNr, double menge, string einheit, string bez = "", string formatData = "", T? position = default)
Parameters
artNrstringArtikel number of the position
mengedoubleAmount of the position
einheitstringUnit of the position
bezstringOptional description of the position. Defaults to Artikel description
formatDatastringComma separated string to automatically replace
#ppositionTThe position to create
Properties
Einheit
Unit of the position
public string Einheit { get; set; }
Property Value
FormatData
Comma separated string to automatically replace #p from Artikel description
public string? FormatData { get; set; }
Property Value
Menge
Amount of the position
public double Menge { get; set; }
Property Value
Position
Position to create
public T Position { get; }
Property Value
- T