Files
BeWoPlaner/Service/Plugins/IpAddressChecker.cs
Christian ad42184e6b Diverses
2017-04-25 18:07:24 +02:00

34 lines
897 B
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.ServiceModel;
using BeWo.Data.Access;
using BeWo.Data.Entities;
using BeWo.Service.Core;
using BeWo.Service.DCEntityMapper;
using BeWo.Service.MessageContracts;
using BeWo.Service.ServiceContracts;
using BS.Shared;
using BS.Shared.Core;
using BS.Shared.DataContracts;
using BS.Shared.Extensions;
using BS.Shared.Services;
using Utils = BS.Shared.Core.Utils;
namespace BeWo.Service.Plugins
{
public class IpAddressChecker : AbstractIDSpecificDefaultClass<IpAddressChecker>
{
public virtual bool CheckIpAddress()
{
//muss überschrieben werden.
return true;
//throw new FaultException<BeWoFault>(new BeWoFault("Dieser Vorgang ist von Ihrem Arbeitsplatz nicht erlaubt.", BeWoFaultType.DeleteNotPossible));
}
}
}