EchoTex_Payroll/HRM.BO/PMP/PMSObjectiveProgressAttachment.cs

41 lines
1.1 KiB
C#
Raw Permalink Normal View History

2024-10-14 10:01:49 +06:00
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<PMSObjectiveProgressAttachment> Get();
PMSObjectiveProgressAttachment Get(int id);
PMSObjectiveProgressAttachment GetbyPMSObjectiveProgressID(int pmsObjectiveProgressID);
List<PMSObjectiveProgressAttachment> GetByObjectGetByPMSObjectiveProgressIDiveID(int pmsObjectiveProgressID);
}
#endregion
}