View Simple Create Patient Client
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using Hl7.Fhir.Model; | |
using Hl7.Fhir.Rest; | |
namespace ConsoleApp2 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) |
View translate.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Console.WriteLine("Let's try translate!"); | |
//Translate parameters | |
var revsertTranslateParameters = new Parameters | |
{ | |
Parameter = new List<Parameters.ParameterComponent> | |
{ | |
new Parameters.ParameterComponent | |
{ |
View FhirTerminologyServer.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
//using RestSharp; | |
using Newtonsoft.Json; | |
using Hl7.Fhir.Model; | |
using Hl7.Fhir.Rest; |
View LingoLogin.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Net; | |
using RestSharp; | |
namespace D_Punch | |
{ | |
public class LingoCredential | |
{ | |
public string password { get; set; } | |
public string username { get; set; } |
View FhirPatient.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using Hl7.Fhir.Rest; | |
using Hl7.Fhir.Model; | |
namespace PatientLogger |
View ValueSet.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// generated from http://json2csharp.com | |
public class Parameter | |
{ | |
public string name { get; set; } | |
public string valueUri { get; set; } | |
public string valueString { get; set; } | |
} | |
public class Contain | |
{ | |
public string system { get; set; } |