Beispiel #1
0
        public String GetTextView(Int32 indentLevel)
        {
            String        i  = HttpClientHelper.Indent(indentLevel);
            StringBuilder sb = new StringBuilder()
                               .Append(i).Append("Id:               ").Append(Id)
                               .Append(i).Append("Id_Eexternal:     ").Append(Id_External)
                               .Append(i).Append("CreatedAt:        ").Append(CreatedAt)
                               .Append(i).Append("UpdatedAt:        ").Append(UpdatedAt)
                               .Append(i).Append("Id_AgroOperation: ").Append(Id_AgroOperation)
                               .Append(i).Append("Id_Applicable:    ").Append(Id_Applicable)
                               .Append(i).Append("ApplicableType:   ").Append(ApplicableType)
                               .Append(i).Append("FactAmount:       ").Append(FactAmount.F("0.00"))
                               .Append(i).Append("FactRate:         ").Append(FactRate.F("0.00"))
                               .Append(i).Append("PlannedAmount:    ").Append(PlannedAmount.F("0.00"))
                               .Append(i).Append("PlannedRate:      ").Append(PlannedRate.F("0.00"))
                               .Append(i).Append("PlannedValue:     ").Append(PlannedValue.F("0.00"))
                               .Append(i).Append("Value:            ").Append(Value.F("0.00"));

            return(sb.ToString());
        }
Beispiel #2
0
 public PlannedMoney(Guid?parentId, string alias) : base(parentId, alias)
 {
     InnerDictionary["Value"] = Value = new PlannedValue(Id, "Value");
 }
 internal PlannedEntity(Guid?parentId, string alias) : base(parentId, alias)
 {
     InnerDictionary["LogicalName"] = LogicalName = new PlannedValue(Id, "LogicalName");
     InnerDictionary["Id"]          = EntityRefId = new PlannedValue(Id, "Id");
 }
 internal PlannedOptionSetValue(Guid?parentId, string alias) : base(parentId, alias)
 {
     InnerDictionary["Value"] = Value = new PlannedValue(Id, "Value");
 }