You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ILuObjectConverterDescriptor.cs 662B

123456789101112131415161718192021
  1. using System.Linq.Expressions;
  2. using System.Reflection;
  3. using Luticate2.Auth.Utils.Business.ExpressionConverter;
  4. namespace Luticate2.Auth.Utils.Interfaces
  5. {
  6. public interface ILuObjectConverterDescriptor
  7. {
  8. LambdaExpression GetMemberValueExpression(MemberInfo memberInfo, LuExpressionConverterOptions options);
  9. LambdaExpression GetMethodValueExpression(MethodInfo methodInfo, LuExpressionConverterOptions options);
  10. }
  11. public interface ILuObjectConverterDescriptor<TTypeFrom, TTypeTo> : ILuObjectConverterDescriptor
  12. {
  13. }
  14. public interface ILuObjectConverterDescriptorIdentity : ILuObjectConverterDescriptor
  15. {
  16. }
  17. }