Files
BeWoPlaner/Shared/Extensions/BoolExtensions.cs
Rene Evertz 57ab630445 Verschachtelungstiefe reduziert
+ Dakota Rechte werden gefiltert, wenn keine GkvAbrechung erlaubt ist
2024-10-18 10:28:33 +02:00

17 lines
274 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BS.Shared.Extensions
{
public static class BoolExtensions
{
public static bool Implies(this bool a, bool b)
{
return !a || b;
}
}
}