using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; /// /// Summary description for Events /// public class Events { public Events() { // // TODO: Add constructor logic here // } int _ID; public int ID { get { return _ID; } set { _ID = value; } } int _TypeID; public int TypeID { get { return _TypeID; } set { _TypeID = value; } } string _en_title; public string En_title { get { return _en_title; } set { _en_title = value; } } string _ar_title; public string Ar_title { get { return _ar_title; } set { _ar_title = value; } } string _en_abstract; public string En_abstract { get { return _en_abstract; } set { _en_abstract = value; } } string _ar_abstract; public string Ar_abstract { get { return _ar_abstract; } set { _ar_abstract = value; } } bool _IsNew; public bool isNew { get { return _IsNew; } set { _IsNew = value; } } bool _inHome; public bool inHome { get { return _inHome; } set { _inHome = value; } } string _Date; public string Date { get { return _Date; } set { _Date = value; } } string _en_venue; public string en_venue { get { return _en_venue; } set { _en_venue = value; } } string _ar_venue; public string ar_venue { get { return _ar_venue; } set { _ar_venue = value; } } string _ar_body; public string ar_body { get { return _ar_body; } set { _ar_body = value; } } string _en_body; public string en_body { get { return _en_body; } set { _en_body = value; } } string _img1; public string img1 { get { return _img1; } set { _img1 = value; } } string _big_image; public string big_image { get { return _big_image; } set { _big_image = value; } } string _en_img_comment; public string en_img_comment { get { return _en_img_comment; } set { _en_img_comment = value; } } string _ar_img_comment; public string ar_img_comment { get { return _ar_img_comment; } set { _ar_img_comment = value; } } string _en_organizer; public string en_organizer { get { return _en_organizer; } set { _en_organizer = value; } } string _ar_organizer; public string ar_organizer { get { return _ar_organizer; } set { _ar_organizer = value; } } string _attfiles; public string attfiles { get { return _attfiles; } set { _attfiles = value; } } }