public static void UpdateEntity(this Models.PersistedGrant token, Documents.PersistedGrant target) { Mapper.Map(token, target); }
public static Models.PersistedGrant ToModel(this Documents.PersistedGrant token) { return(token == null ? null : Mapper.Map <Models.PersistedGrant>(token)); }