20 lines
457 B
C#
20 lines
457 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.ServiceModel.Configuration;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BeWo.Service.ServiceBehavior
|
|
{
|
|
public class AdminMultitenancyBehaviorExtension : BehaviorExtensionElement
|
|
{
|
|
public override Type BehaviorType => typeof(AdminMultitenancyBehavior);
|
|
|
|
protected override object CreateBehavior()
|
|
{
|
|
return new AdminMultitenancyBehavior();
|
|
}
|
|
}
|
|
}
|