34 lines
897 B
C#
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));
|
|
|
|
|
|
}
|
|
}
|
|
}
|