EchoTex_Payroll/HRM.BO/Employee/ProfileDashboardMobile.cs

37 lines
979 B
C#
Raw Normal View History

2024-10-14 10:01:49 +06:00
using Ease.Core.DataAccess;
using Ease.Core.Model;
using Ease.Core.Utility;
using HRM.BO;
using NPOI.SS.Formula.Functions;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HRM.BO
{
#region class
public class ProfileDashboardMobile : AuditTrailBase
{
#region Properties
public int ProfileComplitionPercent { get; set; }
public int CurrentMonthWorkingDays { get; set; }
public int CurrentMonthAbsent { get; set; }
public int CurrentMonthLate { get; set; }
public int CurrentMonthLeave { get; set; }
public int TotalTeamCount { get; set; }
public string ShiftName { get;set; }
#endregion
}
#endregion
#region Interface
public interface IProfileDashboardMobile
{
DataSet ProfileDashboardMobile(int EmployeeID, DateTime FromDate, DateTime ToDate);
}
#endregion
}