Add recomendations for meeting scheduler

This commit is contained in:
2025-10-31 13:29:43 -04:00
parent cf9949876d
commit b7fa7fcbe1
4 changed files with 93 additions and 61 deletions
+16
View File
@@ -0,0 +1,16 @@
using Core.Entities;
namespace Core.Calculation;
public class TeamIdComparer : IEqualityComparer<Team>
{
public bool Equals(Team? x, Team? y)
{
return x != null && y != null && x.Id == y.Id;
}
public int GetHashCode(Team obj)
{
return obj.Id.GetHashCode();
}
}