This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -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; }
}
}

View file

@ -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();
}
}