13 lines
634 B
C#
13 lines
634 B
C#
namespace Kreta.BusinessLogic.Classes.MobileApi.Naplo.V2.Logic
|
|
{
|
|
using System;
|
|
|
|
public static class FelmentesLogic
|
|
{
|
|
public static bool CalculateIsNowFelmentettByDatum(DateTime examinedDate, DateTime? felmentesKezdetDatuma, DateTime? felmentesVegDatuma)
|
|
=> (!felmentesKezdetDatuma.HasValue && !felmentesVegDatuma.HasValue)
|
|
|| (!felmentesKezdetDatuma.HasValue && examinedDate <= felmentesVegDatuma)
|
|
|| (!felmentesVegDatuma.HasValue && felmentesKezdetDatuma <= examinedDate)
|
|
|| (felmentesKezdetDatuma <= examinedDate && examinedDate <= felmentesVegDatuma);
|
|
}
|
|
}
|