EchoTex_Payroll/HRM.BO/Common/AitAttachment.cs

46 lines
858 B
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 AitAttachment : AuditTrailBase
{
public AitAttachment()
{
}
public int ReferenceID { get; set; }
public int EmployeeID { get; set; }
public int AitID { get; set; }
public string OriginalFileName { get; set; }
public EnumTaxAttachment FileType { get; set; }
public string File { get; set; }
public string FilePath { get; set; }
public byte[] FileAsByteArray { get; set; }
public string FileTobase64
{
get
{
return Convert.ToBase64String(FileAsByteArray);
}
}
public string PreviousFileTobase64
{
get; set;
}
public string Extension { get; set; }
public string ConnectionString { get; set; }
}
public interface IAitAttachmentService
{
}
}