46 lines
858 B
C#
46 lines
858 B
C#
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
|
|
{
|
|
|
|
}
|
|
}
|