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

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using Kreta.Naplo.Domain.V3.Orarend;
namespace Kreta.Naplo.Domain.V3.Csatolmany
{
public class CsatolmanyListRequest
{
public DateTime DatumTol { get; set; }
public DateTime DatumIg { get; set; }
public IEnumerable<OrarendElemSimplified> OrarendElemek { get; set; }
}
}

View File

@@ -0,0 +1,15 @@
using System.Collections.Generic;
namespace Kreta.Naplo.Domain.V3.Csatolmany
{
public class CsatolmanyResponse : IEqualityComparer<CsatolmanyResponse>
{
public int Id { get; set; }
public string Nev { get; set; }
public bool Equals(CsatolmanyResponse x, CsatolmanyResponse y) => x.Id.Equals(y.Id);
public int GetHashCode(CsatolmanyResponse obj) => obj.Id.GetHashCode();
}
}