Posts by Tiago Aguiar • 45 points
3 posts
-
0
votes1
answer42
viewsQ: Map sub-property
I have three classes public class Ligacao { public string Guid { get; set; } public string Telefone { get; set; } public Status Status { get; set; } public string ArquivoJson { get; set; } public…
-
1
votes2
answers75
viewsQ: Sonar: Validate changes from a given date
I use Git integrated with Team Foundation Server. The idea is to place Sonar as a step in TFS to stop the build as per the established rule. I need to know if it is possible for Sonar to apply the…
-
2
votes2
answers358
viewsQ: Good Practice for Rest Services
When I made my first Rest API, I defined my JSON structure and always returned that same structure even if the pair had given it or not. I talked to a new co-worker and he presented me another…