-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBatch.cs
More file actions
73 lines (59 loc) · 1.7 KB
/
Copy pathBatch.cs
File metadata and controls
73 lines (59 loc) · 1.7 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#region using statements
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
#endregion
namespace DataJuggler.Excelerate
{
#region class Batch
/// <summary>
/// This class is used to update one or more BatchItems.
/// </summary>
public class Batch
{
#region Private Variables
private List<BatchItem> batchItems;
#endregion
#region Constructor
/// <summary>
/// Create a new instance of a 'Batch' object.
/// </summary>
public Batch()
{
// Create a new instance of a 'batchItems' object.
BatchItems = new List<BatchItem>();
}
#endregion
#region Properties
#region BatchItems
/// <summary>
/// This property gets or sets the value for 'BatchItems'.
/// </summary>
public List<BatchItem> BatchItems
{
get { return batchItems; }
set { batchItems = value; }
}
#endregion
#region HasBatchItems
/// <summary>
/// This property returns true if this object has a 'BatchItems'.
/// </summary>
public bool HasBatchItems
{
get
{
// initial value
bool hasBatchItems = (this.BatchItems != null);
// return value
return hasBatchItems;
}
}
#endregion
#endregion
}
#endregion
}