init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,23 @@
|
|||
using System.Collections.Generic;
|
||||
using Kreta.Ellenorzo.Domain.VN.UniqueIdentifier;
|
||||
|
||||
namespace Kreta.Ellenorzo.Domain.VN.Ertekeles.Atlag.OsztalyAtlag
|
||||
{
|
||||
public class OsztalyAtlagListRequest
|
||||
{
|
||||
public OsztalyAtlagListRequest()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public OsztalyAtlagListRequest(string tantargyUid)
|
||||
{
|
||||
TantargyUids = string.IsNullOrWhiteSpace(tantargyUid) ? null : new List<TantargyUid> { new TantargyUid(tantargyUid) };
|
||||
}
|
||||
public OktatasiNevelesiFeladatUid OktatasiNevelesiFeladatUid { get; set; }
|
||||
|
||||
public List<TantargyUid> TantargyUids { get; set; }
|
||||
|
||||
public bool IsAtlagNeeded { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,22 @@
|
|||
using System.Collections.Generic;
|
||||
using Kreta.Ellenorzo.Domain.VN.Tantargy;
|
||||
|
||||
namespace Kreta.Ellenorzo.Domain.VN.Ertekeles.Atlag.OsztalyAtlag
|
||||
{
|
||||
public class OsztalyAtlagListResponse : IEqualityComparer<OsztalyAtlagListResponse>
|
||||
{
|
||||
public decimal? OsztalyCsoportAtlag { get; set; }
|
||||
|
||||
public decimal? OsztalyCsoportAtlagtolValoElteres { get; set; }
|
||||
|
||||
public TantargyResponse Tantargy { get; set; }
|
||||
|
||||
public decimal? TanuloAtlag { get; set; }
|
||||
|
||||
public string Uid { get; set; }
|
||||
|
||||
public bool Equals(OsztalyAtlagListResponse x, OsztalyAtlagListResponse y) => x == y || x.Tantargy.Equals(y.Tantargy);
|
||||
|
||||
public int GetHashCode(OsztalyAtlagListResponse obj) => obj.Tantargy.GetHashCode();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue