/// <summary> /// Initializes a new instance of the SCGDocument class /// </summary> /// <param name="subject">Initial <see cref="SCGDocument.Subject" /> value</param> /// <param name="memo">Initial <see cref="SCGDocument.Memo" /> value</param> /// <param name="companyID">Initial <see cref="SCGDocument.CompanyID" /> value</param> /// <param name="requesterID">Initial <see cref="SCGDocument.RequesterID" /> value</param> /// <param name="creatorID">Initial <see cref="SCGDocument.CreatorID" /> value</param> /// <param name="receiverID">Initial <see cref="SCGDocument.ReceiverID" /> value</param> /// <param name="approverID">Initial <see cref="SCGDocument.ApproverID" /> value</param> public SCGDocument(string subject, string memo, DateTime?documentDate, SCG.DB.DTO.DbCompany companyID, SS.SU.DTO.SuUser requesterID, SS.SU.DTO.SuUser creatorID, SS.SU.DTO.SuUser receiverID, SS.SU.DTO.SuUser approverID) { this.subject = subject; this.memo = memo; this.companyID = companyID; this.requesterID = requesterID; this.creatorID = creatorID; this.receiverID = receiverID; this.approverID = approverID; this.documentDate = documentDate; }
public void Delete(SS.SU.DTO.SuUser domain) { throw new NotImplementedException(); }
public int Save(SS.SU.DTO.SuUser domain) { throw new NotImplementedException(); }
public void SaveOrUpdate(SS.SU.DTO.SuUser domain) { throw new NotImplementedException(); }
public bool FindExisting(SS.SU.DTO.SuUser domain) { throw new NotImplementedException(); }