Skip to content

Commit

Permalink
Cherry pick branch 'genexuslabs:rest-service-as-controller' into beta
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiamurialdo authored and genexusbot committed Jun 6, 2024
1 parent 502848b commit 68c188c
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions dotnet/src/dotnetframework/GxClasses/Model/GXSilentTrn.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ namespace GeneXus.Utils
#if !NETCORE
using Jayrock.Json;
#endif
using System.Text;
using System.Security.Cryptography;
using System.Reflection;
using System.Runtime.Serialization;
#if !NETCORE
#if NETCORE
using Microsoft.AspNetCore.Mvc;
#else
using System.ServiceModel;
#endif
using Configuration;
using System.Globalization;
using GeneXus.Http;
using System.Diagnostics;
using System.Text;
using System.Text.Json.Serialization;
using Microsoft.AspNetCore.Mvc;

public interface IGxSilentTrn
{
Expand Down Expand Up @@ -715,13 +715,17 @@ public GxGenericCollectionItem(T s)
{
sdt1 = s;
}
#if NETCORE
[JsonIgnore]
#endif
public GxUserType Sdt
{
get { return sdt1; }
set { sdt1 = (T)value; }
}
#if NETCORE
[JsonIgnore]
#endif
public IGxContext context
{
get { return sdt1.context; }
Expand Down

0 comments on commit 68c188c

Please sign in to comment.