init
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
@@ -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();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user