-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEvent.cs
39 lines (37 loc) · 1.55 KB
/
Event.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
38
39
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace EventManagementSystem
{
public partial class Event
{
public string eventName { get; set; }
public string eventStartDate { get; set; }
public string eventEndDate { get; set; }
public string eventStartTime { get; set; }
public string eventEndTime { get; set; }
public string eventVenue { get; set; }
public string eventPrice { get; set; }
public string eventCategory { get; set; }
public string description { get; set; }
public string eventOrganizer { get; set; }
public string contactPerson { get; set; }
public string imagePath { get; set; }
public Event(string eventName,string eventStartDate, string eventEndDate,string eventStartTime, string eventEndTime,string eventVenue, string eventPrice, string eventCategory,string description,string eventOrganizer, string contactPerson, string imagePath)
{
this.eventName = eventName;
this.eventStartDate = eventStartDate;
this.eventEndDate = eventEndDate;
this.eventStartTime = eventStartTime;
this.eventEndTime = eventEndTime;
this.eventVenue = eventVenue;
this.eventPrice = eventPrice;
this.eventCategory = eventCategory;
this.description = description;
this.eventOrganizer = eventOrganizer;
this.contactPerson = contactPerson;
this.imagePath = imagePath;
}
}
}