| 12345678910111213141516171819 |
- using System.Reflection;
- namespace Abp.Domain.Uow
- {
- /// <summary>
- /// A helper class to simplify unit of work process.
- /// </summary>
- internal static class UnitOfWorkHelper
- {
- /// <summary>
- /// Returns true if given method has UnitOfWorkAttribute attribute.
- /// </summary>
- /// <param name="memberInfo">Method info to check</param>
- public static bool HasUnitOfWorkAttribute(MemberInfo memberInfo)
- {
- return memberInfo.IsDefined(typeof(UnitOfWorkAttribute), true);
- }
- }
- }
|