add employee leaves to TotalHourse

This commit is contained in:
SamSys
2024-08-12 21:30:25 +03:30
parent c300e84330
commit 0e6229f681
5 changed files with 85 additions and 9 deletions

View File

@@ -1,10 +1,14 @@
namespace CompanyManagment.App.Contracts.Leave;
using System;
namespace CompanyManagment.App.Contracts.Leave;
public class LeaveSearchModel
{
public string StartLeave { get; set; }
public string EndLeave { get; set; }
public string LeaveHourses { get; set; }
public DateTime? StartLeaveGr { get; set; }
public DateTime? EndLeaveGr { get; set; }
public string LeaveHourses { get; set; }
public long WorkshopId { get; set; }
public long EmployeeId { get; set; }
public string PaidLeaveType { get; set; }

View File

@@ -22,4 +22,6 @@ public class LeaveViewModel
public int Month { get; set; }
public string MonthStr { get; set; }
public DateTime CreationDate { get; set; }
public int DayCounter { get; set; }
}