-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDataEntry.cs
37 lines (33 loc) · 945 Bytes
/
DataEntry.cs
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
using Microsoft.WindowsAzure.Storage.Table;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WorkerRole1
{
class DataEntry : TableEntity
{
public string stringData { get; set; }
public int intData { get; set; }
public DataEntry()
{
this.stringData = "";
this.intData = 0;
this.PartitionKey = "data";
this.RowKey = "empty";
}
public DataEntry(string stringData, string rowKey, string partitionKey)
{
this.stringData = stringData;
this.PartitionKey = partitionKey;
this.RowKey = rowKey;
}
public DataEntry(int intData, string rowKey, string partitionKey)
{
this.intData = intData;
this.PartitionKey = partitionKey;
this.RowKey = rowKey;
}
}
}