public CCertificate() { m_uuidID = System.Guid.Empty; m_strNum = ""; m_objCertificateType = null; m_dtBeginDate = System.DateTime.Today; m_dtEndDate = System.DateTime.MaxValue; m_strWhoGive = ""; NumForWaybill = System.String.Empty; Description = System.String.Empty; IsActive = true; ImageCertificateFileName = System.String.Empty; ImageCertificate = null; ExistImage = false; ActionType = enumCertificateActionTypeWithImage.Nothing; }
public CCertificate(CCertificateType objCertificateType, System.Guid uuidId, System.String strNum, System.DateTime dtBeginDate, System.DateTime dtEndDate, System.String strWhoGive) { m_uuidID = uuidId; m_strNum = strNum; m_objCertificateType = objCertificateType; m_dtBeginDate = dtBeginDate; m_dtEndDate = dtEndDate; m_strWhoGive = strWhoGive; NumForWaybill = System.String.Empty; Description = System.String.Empty; IsActive = true; ImageCertificateFileName = System.String.Empty; ImageCertificate = null; ExistImage = false; ActionType = enumCertificateActionTypeWithImage.Nothing; }