public void DeleteContactUs(int Id)
        {
            ContactUsData contactusData = new ContactUsData();

            try
            {
                contactusData.DeleteContactUs(Id);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }