本文整理匯總了C#中PixServiseTests.TestEmkServiceClient.CreateCase方法的典型用法代碼示例。如果您正苦於以下問題:C# TestEmkServiceClient.CreateCase方法的具體用法?C# TestEmkServiceClient.CreateCase怎麽用?C# TestEmkServiceClient.CreateCase使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類PixServiseTests.TestEmkServiceClient
的用法示例。
在下文中一共展示了TestEmkServiceClient.CreateCase方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: UpdateFullAmbCase_AfterClose
public void UpdateFullAmbCase_AfterClose()
{
using (TestPixServiceClient PixClient = new TestPixServiceClient())
{
PatientDto patient = (new SetData()).PatientSet();
PixClient.AddPatient(Global.GUID, Data.idlpu, patient);
}
using (TestEmkServiceClient EmkClient = new TestEmkServiceClient())
{
CaseAmb caseAmb = (new SetData()).MinCaseAmbSetForCreate();
EmkClient.CreateCase(Global.GUID, caseAmb);
caseAmb = (new SetData()).MinCaseAmbSetForClose();
EmkClient.CloseCase(Global.GUID, caseAmb);
CaseAmb caseAmbUpdate = (new SetData()).FullCaseAmbSet();
SetData set = new SetData();
caseAmb.MedRecords = new List<MedRecord>
{
set.MinService(),
set.MinTfomsInfo(),
set.MinDiagnosis(),
MedRecordData.clinicMainDiagnosis,
set.MinRefferal(),
set.MinSickList(),
set.MinDischargeSummary(),
set.MinLaboratoryReport(),
set.MinConsultNote()
};
StepAmb stepAmb = (new SetData()).MinStepAmbSet();
stepAmb.MedRecords = new List<MedRecord>
{
set.MinService(),
set.MinAppointedMedication(),
set.MinDiagnosis(),
MedRecordData.clinicMainDiagnosis,
set.MinRefferal(),
set.MinLaboratoryReport(),
};
caseAmbUpdate.Steps = new List<StepAmb>
{
stepAmb
};
EmkClient.UpdateCase(Global.GUID, caseAmbUpdate);
}
if (Global.errors == "")
Assert.Pass();
else
Assert.Fail(Global.errors);
}
示例2: UpdateFullAmbCase_AfterClose
public void UpdateFullAmbCase_AfterClose()
{
using (TestPixServiceClient PixClient = new TestPixServiceClient())
{
PatientDto patient = (new SetData()).PatientSet();
PixClient.AddPatient("D500E893-166B-4724-9C78-D0DBE1F1C48D", "1.2.643.5.1.13.3.25.78.118", patient);
}
using (TestEmkServiceClient EmkClient = new TestEmkServiceClient())
{
CaseAmb caseAmb = (new SetData()).MinCaseAmbSetForCreate();
EmkClient.CreateCase("D500E893-166B-4724-9C78-D0DBE1F1C48D", caseAmb);
caseAmb = (new SetData()).MinCaseAmbSetForClose();
EmkClient.CloseCase("D500E893-166B-4724-9C78-D0DBE1F1C48D", caseAmb);
CaseAmb caseAmbUpdate = (new SetData()).FullCaseAmbSet();
SetData set = new SetData();
caseAmb.MedRecords = new MedRecord[]
{
set.MinService(),
set.MinTfomsInfo(),
set.MinDiagnosis(),
MedRecordData.clinicMainDiagnosis,
MedRecordData.referral,
MedRecordData.sickList,
set.MinDischargeSummary(),
set.MinLaboratoryReport(),
set.MinConsultNote()
};
StepAmb stepAmb = (new SetData()).MinStepAmbSet();
stepAmb.MedRecords = new MedRecord[]
{
set.MinService(),
set.MinAppointedMedication(),
set.MinDiagnosis(),
MedRecordData.clinicMainDiagnosis,
MedRecordData.referral,
set.MinLaboratoryReport(),
};
caseAmb.Steps = new StepAmb[]
{
stepAmb
};
EmkClient.UpdateCase("D500E893-166B-4724-9C78-D0DBE1F1C48D", caseAmbUpdate);
}
if (Global.errors == "")
Assert.Pass();
else
Assert.Fail(Global.errors);
}
示例3: AddAmbMedRecConsultNote_OpenCase
public void AddAmbMedRecConsultNote_OpenCase()
{
using (TestPixServiceClient PixClient = new TestPixServiceClient())
{
PatientDto patient = (new SetData()).PatientSet();
PixClient.AddPatient(Global.GUID, Data.idlpu, patient);
}
using (TestEmkServiceClient EmkClient = new TestEmkServiceClient())
{
CaseAmb caseAmb = (new SetData()).MinCaseAmbSetForCreate();
EmkClient.CreateCase(Global.GUID, caseAmb);
EmkClient.AddMedRecord(Global.GUID, Data.idlpu, caseAmb.IdPatientMis, MedRecordData.consultNote, caseAmb.IdCaseMis);
}
if (Global.errors == "")
Assert.Pass();
else
Assert.Fail(Global.errors);
}
示例4: CreateFullAmbCase
public void CreateFullAmbCase()
{
using (TestPixServiceClient PixClient = new TestPixServiceClient())
{
PatientDto patient = (new SetData()).PatientSet();
PixClient.AddPatient(Global.GUID, Data.idlpu, patient);
}
using (TestEmkServiceClient EmkClient = new TestEmkServiceClient())
{
CaseAmb caseAmb = (new SetData()).FullCaseAmbSetForCreate();
SetData set = new SetData();
caseAmb.MedRecords = new List<MedRecord>
{
set.MinService(),
set.MinTfomsInfo(),
set.MinDiagnosis(),
MedRecordData.clinicMainDiagnosis,
MedRecordData.referral,
MedRecordData.sickList,
set.MinLaboratoryReport(),
};
StepAmb stepAmb = (new SetData()).MinStepAmbSet();
stepAmb.MedRecords = new List<MedRecord>
{
set.MinService(),
set.MinAppointedMedication(),
set.MinDiagnosis(),
MedRecordData.clinicMainDiagnosis,
MedRecordData.referral,
set.MinLaboratoryReport(),
};
caseAmb.Steps = new List<StepAmb>
{
stepAmb
};
EmkClient.CreateCase(Global.GUID, caseAmb);
}
if (Global.errors == "")
Assert.Pass();
else
Assert.Fail(Global.errors);
}
示例5: CreateMinStatCase
public void CreateMinStatCase()
{
using (TestPixServiceClient PixClient = new TestPixServiceClient())
{
PatientDto patient = (new SetData()).PatientSet();
PixClient.AddPatient(Global.GUID, Data.idlpu, patient);
}
using (TestEmkServiceClient EmkClient = new TestEmkServiceClient())
{
CaseStat caseStat = (new SetData()).MinCaseStatSetForCreate();
EmkClient.CreateCase(Global.GUID, caseStat);
}
if (Global.errors == "")
Assert.Pass();
else
Assert.Fail(Global.errors);
}
示例6: UpdateMinStatCase_AfterClose
public void UpdateMinStatCase_AfterClose()
{
using (TestPixServiceClient PixClient = new TestPixServiceClient())
{
PatientDto patient = (new SetData()).PatientSet();
PixClient.AddPatient("D500E893-166B-4724-9C78-D0DBE1F1C48D", "1.2.643.5.1.13.3.25.78.118", patient);
}
using (TestEmkServiceClient EmkClient = new TestEmkServiceClient())
{
CaseStat caseStat = (new SetData()).MinCaseStatSetForCreate();
EmkClient.CreateCase("D500E893-166B-4724-9C78-D0DBE1F1C48D", caseStat);
caseStat = (new SetData()).MinCaseStatSetForClose();
EmkClient.CloseCase("D500E893-166B-4724-9C78-D0DBE1F1C48D", caseStat);
caseStat = (new SetData()).MinCaseStatSet();
EmkClient.UpdateCase("D500E893-166B-4724-9C78-D0DBE1F1C48D", caseStat);
}
if (Global.errors == "")
Assert.Pass();
else
Assert.Fail(Global.errors);
}
示例7: CreateStatCaseWithAppointedMedicationMin
public void CreateStatCaseWithAppointedMedicationMin()
{
using (TestPixServiceClient c = new TestPixServiceClient())
{
PatientDto patient = (new SetData()).PatientSet();
c.AddPatient(Global.GUID, Data.idlpu, patient);
}
using (TestEmkServiceClient client = new TestEmkServiceClient())
{
CaseStat caseStat = (new SetData()).MinCaseStatSetForCreate();
caseStat.MedRecords = new List<MedRecord>
{
(new SetData()).MinClinicMainDiagnosis(),
MedRecordData.appointedMedication,
};
caseStat.MedRecords = new List<MedRecord>
{
(new SetData()).MinClinicMainDiagnosis(),
(new SetData()).MinAppointedMedication()
};
StepStat stepStat = (new SetData()).MinStepStatSet();
stepStat.MedRecords = new List<MedRecord>
{
(new SetData()).MinAppointedMedication()
};
caseStat.Steps = new List<StepStat>
{
stepStat
};
client.CreateCase(Global.GUID, caseStat);
}
if (Global.errors == "")
Assert.Pass();
else
Assert.Fail(Global.errors);
}
示例8: AddStepToCaseStatCaseWithAppointedMedicationMin
public void AddStepToCaseStatCaseWithAppointedMedicationMin()
{
using (TestPixServiceClient c = new TestPixServiceClient())
{
PatientDto patient = (new SetData()).PatientSet();
c.AddPatient(Global.GUID, Data.idlpu, patient);
}
using (TestEmkServiceClient client = new TestEmkServiceClient())
{
CaseStat caseStat = (new SetData()).MinCaseStatSetForCreate();
client.CreateCase(Global.GUID, caseStat);
StepStat stepStat = (new SetData()).MinStepStatSet();
stepStat.MedRecords = new List<MedRecord>
{
(new SetData()).MinAppointedMedication()
};
client.AddStepToCase(Global.GUID, Data.idlpu, caseStat.IdPatientMis, caseStat.IdCaseMis, stepStat);
}
if (Global.errors == "")
Assert.Pass();
else
Assert.Fail(Global.errors);
}
示例9: CreateStatCaseWithLaboratoryReportMin
public void CreateStatCaseWithLaboratoryReportMin()
{
using (TestPixServiceClient c = new TestPixServiceClient())
{
PatientDto patient = (new SetData()).PatientSet();
c.AddPatient(Global.GUID, Data.idlpu, patient);
}
using (TestEmkServiceClient client = new TestEmkServiceClient())
{
CaseStat caseStat = (new SetData()).MinCaseStatSetForCreate();
caseStat.MedRecords = new List<MedRecord>
{
(new SetData()).MinLaboratoryReport()
};
client.CreateCase(Global.GUID, caseStat);
}
if (Global.errors == "")
Assert.Pass();
else
Assert.Fail(Global.errors);
}
示例10: CreateStatCaseWithServiceFull
public void CreateStatCaseWithServiceFull()
{
using (TestPixServiceClient c = new TestPixServiceClient())
{
PatientDto patient = (new SetData()).PatientSet();
c.AddPatient(Global.GUID, Data.idlpu, patient);
}
using (TestEmkServiceClient client = new TestEmkServiceClient())
{
CaseStat caseStat = (new SetData()).MinCaseStatSetForCreate();
caseStat.MedRecords = new List<MedRecord>
{
MedRecordData.service
};
StepStat stepStat = (new SetData()).MinStepStatSet();
stepStat.MedRecords = new List<MedRecord>
{
MedRecordData.service,
(new SetData()).MinService()
};
caseStat.Steps = new List<StepStat>
{
stepStat
};
client.CreateCase(Global.GUID, caseStat);
}
if (Global.errors == "")
Assert.Pass();
else
Assert.Fail(Global.errors);
}
示例11: UpdateMinAmbCase_AfterClose
public void UpdateMinAmbCase_AfterClose()
{
using (TestPixServiceClient PixClient = new TestPixServiceClient())
{
PatientDto patient = (new SetData()).PatientSet();
PixClient.AddPatient(Global.GUID, Data.idlpu, patient);
}
using (TestEmkServiceClient EmkClient = new TestEmkServiceClient())
{
CaseAmb caseAmb = (new SetData()).MinCaseAmbSetForCreate();
EmkClient.CreateCase(Global.GUID, caseAmb);
caseAmb = (new SetData()).MinCaseAmbSetForClose();
EmkClient.CloseCase(Global.GUID, caseAmb);
caseAmb = (new SetData()).MinCaseAmbSet();
EmkClient.UpdateCase(Global.GUID, caseAmb);
}
if (Global.errors == "")
Assert.Pass();
else
Assert.Fail(Global.errors);
}
示例12: _CreateStatCase
public void _CreateStatCase()
{
using (TestPixServiceClient PixClient = new TestPixServiceClient())
{
PatientDto patient = (new SetData()).PatientSet();
PixClient.AddPatient(Global.GUID, "1.2.643.5.1.13.3.25.78.118", patient);
}
using (TestEmkServiceClient EmkClient = new TestEmkServiceClient())
{
CaseStat caseStat = (new SetData()).FullCaseStatSetForCreate();
caseStat.Guardian = null;
caseStat.OpenDate = new DateTime(2014, 06, 01);
SetData set = new SetData();
StepStat stepStat = (new SetData()).MinStepStatSet();
caseStat.Steps = new List<StepStat>
{
stepStat
};
caseStat.Steps[0].DateStart = new DateTime(2014, 06, 01);
caseStat.Steps[0].DateEnd = new DateTime(2014, 06, 04);
EmkClient.CreateCase(Global.GUID, caseStat);
StepStat s = CaseStatData.otherStep;
s.MedRecords = new List<MedRecord>
{
MedRecordData.appointedMedication,
MedRecordData.service
};
s.DateStart = new DateTime(2014, 06, 05);
s.DateEnd = new DateTime(2014, 06, 10);
EmkClient.AddStepToCase(Global.GUID, caseStat.IdLpu, caseStat.IdPatientMis, caseStat.IdCaseMis, s);
caseStat = (new SetData()).FullCaseStatSetForClose();
caseStat.Guardian = null;
caseStat.CloseDate = new DateTime(2014, 06, 10);
caseStat.MedRecords = new List<MedRecord>
{
MedRecordData.clinicMainDiagnosis,
GetEpic()
};
EmkClient.CloseCase(Global.GUID, caseStat);
}
if (Global.errors == "")
Assert.Pass();
else
Assert.Fail(Global.errors);
}
示例13: CreateAmbCaseWithTfomsInfoMin
public void CreateAmbCaseWithTfomsInfoMin()
{
using (TestPixServiceClient c = new TestPixServiceClient())
{
PatientDto patient = (new SetData()).PatientSet();
c.AddPatient(Global.GUID, Data.idlpu, patient);
}
using (TestEmkServiceClient client = new TestEmkServiceClient())
{
CaseAmb caseAmb = (new SetData()).MinCaseAmbSetForCreate();
caseAmb.MedRecords = new List<MedRecord>
{
(new SetData()).MinTfomsInfo()
};
client.CreateCase(Global.GUID, caseAmb);
}
if (Global.errors == "")
Assert.Pass();
else
Assert.Fail(Global.errors);
}
示例14: CloseStatCaseWithTfomsInfoFull
public void CloseStatCaseWithTfomsInfoFull()
{
using (TestPixServiceClient c = new TestPixServiceClient())
{
PatientDto patient = (new SetData()).PatientSet();
c.AddPatient(Global.GUID, Data.idlpu, patient);
}
using (TestEmkServiceClient client = new TestEmkServiceClient())
{
CaseStat caseStat = (new SetData()).MinCaseStatSetForCreate();
client.CreateCase(Global.GUID, caseStat);
caseStat = (new SetData()).MinCaseStatSetForClose();
caseStat.MedRecords = new List<MedRecord>
{
MedRecordData.tfomsInfo,
(new SetData()).MinClinicMainDiagnosis()
};
client.CloseCase(Global.GUID, caseStat);
}
if (Global.errors == "")
Assert.Pass();
else
Assert.Fail(Global.errors);
}
示例15: CloseAmbCaseWithMaxConsultNote
public void CloseAmbCaseWithMaxConsultNote()
{
using (TestPixServiceClient c = new TestPixServiceClient())
{
PatientDto patient = (new SetData()).PatientSet();
c.AddPatient(Global.GUID, Data.idlpu, patient);
}
using (TestEmkServiceClient client = new TestEmkServiceClient())
{
CaseAmb caseAmb = (new SetData()).MinCaseAmbSetForCreate();
client.CreateCase(Global.GUID, caseAmb);
caseAmb = (new SetData()).MinCaseAmbSetForClose();
caseAmb.MedRecords = new List<MedRecord>
{
MedRecordData.consultNote,
(new SetData()).MinClinicMainDiagnosis()
};
client.CloseCase(Global.GUID, caseAmb);
}
if (Global.errors == "")
Assert.Pass();
else
Assert.Fail(Global.errors);
}