using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HRM.BO { public class PMSObjectiveProgressAttachment : BasicBaseObject { #region Constructor public PMSObjectiveProgressAttachment() { } #endregion #region Properties public int PMSObjectiveProgressID { get; set; } public string FileName { get; set; } public DateTime UploadTime { get; set; } public object FileData { get; set; } public int FileType { get; set; } #endregion } #region IPMSObjectiveProgress Service public interface IPMSObjectiveProgressAttachmentService { void Save(PMSObjectiveProgressAttachment item); List Get(); PMSObjectiveProgressAttachment Get(int id); PMSObjectiveProgressAttachment GetbyPMSObjectiveProgressID(int pmsObjectiveProgressID); List GetByObjectGetByPMSObjectiveProgressIDiveID(int pmsObjectiveProgressID); } #endregion }