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 }