Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

LuObjectConverterIdentity.cs 532B

123456789101112131415
  1. using Luticate2.Auth.Utils.Dbo.Fields;
  2. using Luticate2.Auth.Utils.Dbo.Result;
  3. using Luticate2.Auth.Utils.Interfaces;
  4. namespace Luticate2.Auth.Utils.Business.Converters.ObjectConverter
  5. {
  6. public class LuObjectConverterIdentity : ILuObjectConverterIdentity
  7. {
  8. public LuResult<object> Convert(object srcObj, object dstObj, LuFieldDbo path, LuPartialFieldsDbo fields, ILuObjectConverterOptions options)
  9. {
  10. // TODO Handle path and dstObj
  11. return LuResult<object>.Ok(srcObj);
  12. }
  13. }
  14. }