Files
BeWoPlaner/DakotaSender/DakotaSenderUtils.cs

26 lines
487 B
C#
Raw Permalink Normal View History

2025-01-13 16:06:56 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DakotaSender
{
internal static class DakotaSenderUtils
{
public static bool IsTenantAllowed(string tenant)
{
var list = FileController.GetTenantsAllowedList();
return list.Contains(tenant);
}
public static bool IsTenantTest(string tenant)
{
var list = FileController.GetTenantsTestList();
return list.Contains(tenant);
}
}
}