|
|
@@ -8,7 +8,7 @@ namespace GreenTree.Nachtragsmanagement.Web.Models.Appendix
|
|
|
public class InvoiceDataModel
|
|
|
{
|
|
|
public int Id { get; set; }
|
|
|
- public int? CustomNumber { get; set; }
|
|
|
+ public string CustomNumber { get; set; }
|
|
|
public decimal? Value { get; set; }
|
|
|
public DateTime? DateTime { get; set; }
|
|
|
public int? AppendixId { get; set; }
|
|
|
@@ -40,7 +40,7 @@ namespace GreenTree.Nachtragsmanagement.Web.Models.Appendix
|
|
|
{
|
|
|
Id = this.Id,
|
|
|
AppendixId = this.AppendixId.Value,
|
|
|
- CustomNumber = this.CustomNumber.Value,
|
|
|
+ CustomNumber = this.CustomNumber,
|
|
|
Date = this.DateTime.Value,
|
|
|
Value = this.Value.Value
|
|
|
};
|