init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,37 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Kreta.Ellenorzo.Domain.VN.UniqueIdentifier;
|
||||
|
||||
namespace Kreta.Ellenorzo.Domain.VN.Felhasznalo.Tanulo
|
||||
{
|
||||
[Serializable]
|
||||
public class GondviseloGetResponse : IEqualityComparer<GondviseloGetResponse>
|
||||
{
|
||||
public GondviseloUid Uid { get; set; }
|
||||
|
||||
public Guid IdpUniqueId { get; set; }
|
||||
|
||||
public string Nev { get; set; }
|
||||
|
||||
public string EmailCim { get; set; }
|
||||
|
||||
public string Telefonszam { get; set; }
|
||||
|
||||
public bool IsTorvenyesKepviselo { get; set; }
|
||||
|
||||
public bool Equals(GondviseloGetResponse x, GondviseloGetResponse y) => x.Uid.Equals(x.Uid, y.Uid);
|
||||
|
||||
public int GetHashCode(GondviseloGetResponse obj) => obj.Uid.UidRaw.GetHashCode();
|
||||
|
||||
public static explicit operator GondviseloGetResponse(Gondviselo.GondviseloResponse model) => model == null ? null :
|
||||
new GondviseloGetResponse
|
||||
{
|
||||
Uid = model.Uid,
|
||||
IdpUniqueId = model.IdpUniqueId,
|
||||
Nev = model.Nev,
|
||||
EmailCim = model.EmailCim,
|
||||
Telefonszam = model.Telefonszam,
|
||||
IsTorvenyesKepviselo = model.IsTorvenyesKepviselo
|
||||
};
|
||||
}
|
||||
}
|
|
@ -0,0 +1,29 @@
|
|||
using System.Collections.Generic;
|
||||
using Kreta.Ellenorzo.Domain.VN.UniqueIdentifier;
|
||||
|
||||
namespace Kreta.Ellenorzo.Domain.VN.Felhasznalo.Tanulo
|
||||
{
|
||||
public class OsztalyfonokGetResponse : IEqualityComparer<OsztalyfonokGetResponse>
|
||||
{
|
||||
public OsztalyfonokUid Uid { get; set; }
|
||||
|
||||
public string EmailCim { get; set; }
|
||||
|
||||
public string Nev { get; set; }
|
||||
|
||||
public string Telefonszam { get; set; }
|
||||
|
||||
public bool Equals(OsztalyfonokGetResponse x, OsztalyfonokGetResponse y) => x.Uid.Equals(x.Uid, y.Uid);
|
||||
|
||||
public int GetHashCode(OsztalyfonokGetResponse obj) => obj.Uid.UidRaw.GetHashCode();
|
||||
|
||||
public static explicit operator OsztalyfonokGetResponse(Alkalmazott.Tanar.Osztalyfonok.OsztalyfonokGetResponse model) => model == null ? null :
|
||||
new OsztalyfonokGetResponse
|
||||
{
|
||||
Uid = model.Uid,
|
||||
Nev = model.Nev,
|
||||
EmailCim = model.EmailCim,
|
||||
Telefonszam = model.Telefonszam
|
||||
};
|
||||
}
|
||||
}
|
|
@ -0,0 +1,31 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Kreta.Ellenorzo.Domain.VN.Felhasznalo.Tanulo
|
||||
{
|
||||
[Serializable]
|
||||
public class TanuloAdatResponse
|
||||
{
|
||||
public Guid IdpUniqueId { get; set; }
|
||||
|
||||
public string Nev { get; set; }
|
||||
|
||||
public string SzuletesiNev { get; set; }
|
||||
|
||||
public string SzuletesiHely { get; set; }
|
||||
|
||||
public string AnyjaNeve { get; set; }
|
||||
|
||||
public string Telefonszam { get; set; }
|
||||
|
||||
public string EmailCim { get; set; }
|
||||
|
||||
public List<string> Cimek { get; set; }
|
||||
|
||||
public DateTime SzuletesiDatum { get; set; }
|
||||
|
||||
public BankszamlaResponse Bankszamla { get; set; }
|
||||
|
||||
public bool IsEszkozKiosztva { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,27 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Kreta.Ellenorzo.Domain.VN.Intezmeny;
|
||||
using Kreta.Ellenorzo.Domain.VN.UniqueIdentifier;
|
||||
|
||||
namespace Kreta.Ellenorzo.Domain.VN.Felhasznalo.Tanulo
|
||||
{
|
||||
[Serializable]
|
||||
public class TanuloGetResponse : IEqualityComparer<TanuloGetResponse>
|
||||
{
|
||||
public int TanevId { get; set; }
|
||||
|
||||
public HashSet<GondviseloGetResponse> GondviseloLista { get; set; }
|
||||
|
||||
public TanuloUid Uid { get; set; }
|
||||
|
||||
public Guid IdpUniqueId { get; set; }
|
||||
|
||||
public IntezmenyResponse Intezmeny { get; set; }
|
||||
|
||||
public TanuloAdatResponse TanuloAdat { get; set; }
|
||||
|
||||
public bool Equals(TanuloGetResponse x, TanuloGetResponse y) => x.Uid.Equals(x.Uid, y.Uid);
|
||||
|
||||
public int GetHashCode(TanuloGetResponse obj) => obj.Uid.UidRaw.GetHashCode();
|
||||
}
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Kreta.Ellenorzo.Domain.VN.UniqueIdentifier;
|
||||
|
||||
namespace Kreta.Ellenorzo.Domain.VN.Felhasznalo.Tanulo
|
||||
{
|
||||
[Serializable]
|
||||
public class TanuloSimplifiedResponse : IEqualityComparer<TanuloSimplifiedResponse>
|
||||
{
|
||||
public TanuloUid Uid { get; set; }
|
||||
|
||||
public bool Equals(TanuloSimplifiedResponse x, TanuloSimplifiedResponse y) => x.Uid.Equals(x.Uid, y.Uid);
|
||||
|
||||
public int GetHashCode(TanuloSimplifiedResponse obj) => obj.Uid.UidRaw.GetHashCode();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue