Made the serviceId is nullable in project allocation

This commit is contained in:
ashutosh.nehete 2025-10-09 15:23:37 +05:30
parent e831f50505
commit 8609db64d2

View File

@ -5,7 +5,7 @@
public Guid EmployeeId { get; set; }
public Guid JobRoleId { get; set; }
public Guid ProjectId { get; set; }
public Guid ServiceId { get; set; }
public Guid? ServiceId { get; set; }
public bool Status { get; set; }
}
@ -14,7 +14,7 @@
{
public Guid ProjectId { get; set; }
public Guid JobRoleId { get; set; }
public Guid ServiceId { get; set; }
public Guid? ServiceId { get; set; }
public bool Status { get; set; }
}
}