21 lines
479 B
C#
21 lines
479 B
C#
using BeWo.Service.UnitOfWork;
|
|
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 AdminHibernateBehaviorExtension : BehaviorExtensionElement
|
|
{
|
|
public override Type BehaviorType => typeof(AdminHibernateBehavior);
|
|
|
|
protected override object CreateBehavior()
|
|
{
|
|
return new AdminHibernateBehavior();
|
|
}
|
|
}
|
|
}
|