init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,11 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace Kreta.Ellenorzo.Domain.VN.Telefon
|
||||
{
|
||||
public class TelefonListRequest
|
||||
{
|
||||
public List<int> FelhasznaloIds { get; set; }
|
||||
|
||||
public bool? IsPublic { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,24 @@
|
|||
using System.Collections.Generic;
|
||||
using Kreta.Ellenorzo.Domain.VN.UniqueIdentifier;
|
||||
|
||||
namespace Kreta.Ellenorzo.Domain.VN.Telefon
|
||||
{
|
||||
public class TelefonListResponse : IEqualityComparer<TelefonListResponse>
|
||||
{
|
||||
public FelhasznaloUid FelhasznaloUid { get; set; }
|
||||
|
||||
public List<TelefonResponse> Telefonszamok { get; set; } = new List<TelefonResponse>();
|
||||
|
||||
public TelefonListResponse()
|
||||
{
|
||||
}
|
||||
|
||||
public bool Equals(TelefonListResponse x, TelefonListResponse y) => x == y || x.FelhasznaloUid.Equals(x.FelhasznaloUid, y.FelhasznaloUid);
|
||||
|
||||
public int GetHashCode(TelefonListResponse obj)
|
||||
{
|
||||
return base.GetHashCode();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,22 @@
|
|||
using System.Collections.Generic;
|
||||
using Kreta.Ellenorzo.Domain.VN.Adatszotar;
|
||||
using Kreta.Ellenorzo.Domain.VN.UniqueIdentifier;
|
||||
using Kreta.Enums;
|
||||
|
||||
namespace Kreta.Ellenorzo.Domain.VN.Telefon
|
||||
{
|
||||
public class TelefonResponse : IEqualityComparer<TelefonResponse>
|
||||
{
|
||||
public string Telefonszam { get; set; }
|
||||
|
||||
public Adatszotar<TelefonTipusEnum> Tipus { get; set; }
|
||||
|
||||
public bool IsAlapertelmezett { get; set; }
|
||||
|
||||
public TelefonUid Uid { get; set; }
|
||||
|
||||
public bool Equals(TelefonResponse x, TelefonResponse y) => x.Uid.Equals(x.Uid, y.Uid);
|
||||
|
||||
public int GetHashCode(TelefonResponse obj) => obj.Uid.UidRaw.GetHashCode();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue