-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInformationOfLine.cs
More file actions
30 lines (26 loc) · 865 Bytes
/
Copy pathInformationOfLine.cs
File metadata and controls
30 lines (26 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using NPOI.XWPF.UserModel;
namespace PdfToXls
{
public class InformationOfLine
{
public bool HasValues => !string.IsNullOrWhiteSpace(Date) && !string.IsNullOrWhiteSpace(Description) && !string.IsNullOrWhiteSpace(Value) && !string.IsNullOrWhiteSpace(TotalValue);
public string Date { get; set; }
public string Description { get; set; }
public string Value { get; set; }
public string TotalValue { get; set; }
public InformationOfLine()
{
Date = string.Empty;
Description = string.Empty;
Value = string.Empty;
TotalValue = string.Empty;
}
public void Clear()
{
Date = string.Empty;
Description = string.Empty;
Value = string.Empty;
TotalValue = string.Empty;
}
}
}