-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataModels.cs
More file actions
109 lines (91 loc) · 2.93 KB
/
Copy pathDataModels.cs
File metadata and controls
109 lines (91 loc) · 2.93 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
using System;
using System.Collections.Generic;
using System.Text;
namespace BOP3_Task_1_C_Sharp_Application_Development
{
public class DataModels
{
}
public class TimingsReportDataClass
{
public string time { get; set; }
public string count { get; set; }
}
public class Record
{
public DateTime timestamp { get; set; }
public string userName { get; set; }
public string table { get; set; }
public string customerId { get; set; }
public DateTime start { get; set; }
public DateTime end { get; set; }
public string type { get; set; }
public int userId { get; set; }
}
public class UpdateAppointmentDataClass
{
public int AppointmentID { get; set; }
public int CustomerID { get; set; }
public string type { get; set; }
public DateTime start { get; set; }
public DateTime end { get; set; }
}
public class AppointmentByMonthDataClass
{
public string MonthYear { get; set; }
public string Type { get; set; }
public string Count { get; set; }
}
public class CreateCustomerRecordDataClass
{
public int customerID { get; set; }
public string customerName { get; set; }
public string phone { get; set; }
public string address { get; set; }
public string city { get; set; }
public string zipCode { get; set; }
public string country { get; set; }
public bool active { get; set; }
}
public class CustomerDetailsDataClass
{
public string customerName { get; set; }
public int customerId { get; set; }
public int addressId { get; set; }
public string active { get; set; }
public string address { get; set; }
public int cityId { get; set; }
public string zip { get; set; }
public string phone { get; set; }
public string city { get; set; }
public int countryId { get; set; }
public string country { get; set; }
}
public class UserReportsDataClass
{
public string userName { get; set; }
public string type { get; set; }
public DateTime startTime { get; set; }
public DateTime endTime { get; set; }
public string customer { get; set; }
}
public class ViewAllCustomersDataCall
{
public int customerId { get; set; }
public string customerName { get; set; }
public string active { get; set; }
public DateTime createDate { get; set; }
public string createdBy { get; set; }
}
public class AppointmentReminderDataClass
{
public bool trueFalse { get; set; }
public string customerName { get; set; }
public DateTime start { get; set; }
}
public class AppointmentDateCheckDataClass
{
public DateTime start { get; set; }
public DateTime end { get; set; }
}
}