2017-01-20 00:51:02 +01:00
|
|
|
|
2017-05-27 16:22:58 +02:00
|
|
|
using Yavsc;
|
2017-01-20 00:51:02 +01:00
|
|
|
|
|
|
|
|
namespace Yavsc.Models.IT.Modeling
|
|
|
|
|
{
|
|
|
|
|
public abstract class Letter<T> : ILetter<T>
|
|
|
|
|
{
|
|
|
|
|
public abstract bool Equals(T x, T y);
|
|
|
|
|
|
|
|
|
|
public int GetHashCode(T obj)
|
|
|
|
|
{
|
|
|
|
|
return obj.GetHashCode();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
2017-05-27 16:22:58 +02:00
|
|
|
}
|