Commit 1938a5fe authored by Krishna Reddy Tamatam's avatar Krishna Reddy Tamatam

To Production Move

parent 4682b717
This diff is collapsed.
...@@ -2,49 +2,41 @@ namespace FTP_Services.Core.Models ...@@ -2,49 +2,41 @@ namespace FTP_Services.Core.Models
{ {
public class PatientDocumentDetailsModel public class PatientDocumentDetailsModel
{ {
public string DocumentType { get; set; } public int DocumentType { get; set; }
public string Description { get; set; } public string Description { get; set; }
public string DocumentName { get; set; } public string DocumentName { get; set; }
public int UploadedBy { get; set; } public int UploadedBy { get; set; }
public int PatientId { get; set; } public int PatientId { get; set; }
public string ContentType { get; set; } public string ContentType { get; set; }
public string Size { get; set; } public int Size { get; set; }
public string DocumentUrl { get; set; } public string DocumentUrl { get; set; }
public string ThumbnailUrl { get; set; } public string ThumbnailUrl { get; set; }
public int SplID { get; set; } public int SplID { get; set; }
public int PatDocId { get; set; } public int PatDocId { get; set; }
public string UploadedDate { get; set; } public string UploadedDate { get; set; }
public int AdmissionID { get; set; }
public int SortNo { get; set; }
public PatientDocumentDetailsModel() public PatientDocumentDetailsModel()
{ {
DocumentType = ""; DocumentType = 0;
Description = ""; Description = "";
DocumentName = ""; DocumentName = "";
UploadedBy = -1; UploadedBy = -1;
PatientId = -1; PatientId = -1;
ContentType = ""; ContentType = "";
Size = ""; Size = 0;
DocumentUrl = ""; DocumentUrl = "";
ThumbnailUrl = ""; ThumbnailUrl = "";
SplID = -1; SplID = -1;
PatDocId = 0; PatDocId = 0;
UploadedDate = ""; UploadedDate = "";
AdmissionID = 0;
SortNo =1;
} }
} }
// public class Login
// {
// public string ID { get; set; }
// public string Name { get; set; }
// public string Code { get; set; }
// public Login()
// {
// ID = "";
// Name = "";
// Code = "";
// }
// }
public class FileResponseModel public class FileResponseModel
{ {
...@@ -139,7 +131,7 @@ namespace FTP_Services.Core.Models ...@@ -139,7 +131,7 @@ namespace FTP_Services.Core.Models
Name = ""; Name = "";
} }
} }
public class ConfigValues public class ConfigValues
{ {
public int ID { get; set; } public int ID { get; set; }
public string Environment { get; set; } public string Environment { get; set; }
...@@ -153,6 +145,12 @@ namespace FTP_Services.Core.Models ...@@ -153,6 +145,12 @@ namespace FTP_Services.Core.Models
public bool IsActive { get; set; } public bool IsActive { get; set; }
public int CompanyId { get; set; } public int CompanyId { get; set; }
public string DatabaseName { get; set; } public string DatabaseName { get; set; }
public string RemoteHost { get; set; }
public string RemoteUser { get; set; }
public string RemotePassword { get; set; }
public string RemotePort { get; set; }
public string ToolVersion { get; set; }
public ConfigValues() public ConfigValues()
{ {
...@@ -161,12 +159,17 @@ namespace FTP_Services.Core.Models ...@@ -161,12 +159,17 @@ namespace FTP_Services.Core.Models
RemotePath = ""; RemotePath = "";
CompanyName = ""; CompanyName = "";
FTPServiceURL = ""; FTPServiceURL = "";
DPI =100; DPI = 100;
PDFSizeLimit =20; PDFSizeLimit = 20;
DefaultDocType =""; DefaultDocType = "";
IsActive = true; IsActive = true;
CompanyId= 1; CompanyId = 1;
DatabaseName =""; DatabaseName = "";
RemoteHost = "";
RemoteUser = "";
RemotePassword = "";
RemotePort = "";
ToolVersion = "";
} }
} }
...@@ -191,7 +194,11 @@ namespace FTP_Services.Core.Models ...@@ -191,7 +194,11 @@ namespace FTP_Services.Core.Models
public int SplID { get; set; } public int SplID { get; set; }
public string ThumbnailUrl { get; set; } public string ThumbnailUrl { get; set; }
public bool IsExternal { get; set; } public bool IsExternal { get; set; }
public int AdmissionId { get; set; }
public string AdmissionNo { get; set; }
public string AdmissionDate { get; set; }
public PatientDocuments() public PatientDocuments()
{ {
...@@ -212,8 +219,22 @@ namespace FTP_Services.Core.Models ...@@ -212,8 +219,22 @@ namespace FTP_Services.Core.Models
FullName = ""; FullName = "";
DocumentUrl = ""; DocumentUrl = "";
SplID = -1; SplID = -1;
ThumbnailUrl =""; ThumbnailUrl = "";
IsExternal =false; IsExternal = false;
AdmissionId = -1;
AdmissionNo = "";
AdmissionDate = "";
}
}
public class Admissions
{
public int ID { get; set; }
public string AdmissionNo { get; set; }
public Admissions()
{
ID = -1;
AdmissionNo = "";
} }
} }
...@@ -226,4 +247,61 @@ namespace FTP_Services.Core.Models ...@@ -226,4 +247,61 @@ namespace FTP_Services.Core.Models
RecordCount = -1; RecordCount = -1;
} }
} }
public class AdmissionDischargeModel
{
public int MRDId { get; set; }
public int PatientId { get; set; }
public int AdmissionId { get; set; }
public int ProviderId { get; set; }
public int LocationId { get; set; }
public int DepartmentId { get; set; }
public int AdmissionAge { get; set; }
public DateTime? AdmissionDate { get; set; }
public int AdmissionTypeId { get; set; }
public DateTime? DischargeDate { get; set; }
//public int DischargeTypeId { get; set; }
public string DischargeType { get; set; }
public string Cause { get; set; }
public int UserId { get; set; }
public bool IsWardChanged { get; set; }
public bool IsICDChanged { get; set; }
public bool IsProcChanged { get; set; }
public List<WardModel> Wards { get; set; }
public List<ICDModel> ICDCodes { get; set; }
public List<ProcedureModel> Procedures { get; set; }
public string Diagnosis { get; set; }
public string MRD_OtherProcedures { get; set; }
}
// Supporting Models
public class WardModel
{
public int WardId { get; set; }
public DateTime WardDate { get; set; }
}
public class ICDModel
{
public string ICDCode { get; set; }
public string ICDDesc { get; set; }
}
public class ProcedureModel
{
public string ProcName { get; set; }
}
public class PatientImgDocSort
{
public int UserId { get; set; }
public List<PatientImgDocModel> PatientImgDoc { get; set; }
}
public class PatientImgDocModel
{
public int PatDocId { get; set; }
public int SortNo { get; set; }
}
} }
This diff is collapsed.
{ {
"AppSettings": { "AppSettings": {
"Secret": "A78E-F7FA-B0FD-DAA45BB866CD-AA73D560-DACC-978C-4A9B-9924-5DE7E33F0040-GCD00", "Secret": "A78E-F7FA-B0FD-DAA45BB866CD-AA73D560-DACC-978C-4A9B-9924-5DE7E33F0040-GCD00",
"ConnectionString": "SERVER=10.11.12.106;PORT=5432;UID=himsdbuser;PWD=dbuser@hims123!;database=fernandez_20241125;Timeout=1000", "ConnectionString": "SERVER=192.168.7.207;PORT=5432;UID=ff4dbuser;PWD=dbuser4ff123!;Database=fernandez_test_20250409_dev;Timeout=1000",
"AdminConnectionString": "SERVER=10.11.12.106;PORT=5432;UID=himsdbuser;PWD=dbuser@hims123!;database=fernandez_20241125;Timeout=1000", "AdminConnectionString": "SERVER=10.11.12.106;PORT=5432;UID=himsdbuser;PWD=dbuser@hims123!;database=CareaxesAdmin;Timeout=1000",
"ConnectionString1": "SERVER=10.11.12.106;PORT=5432;UID=himsdbuser;PWD=dbuser@hims123!;database=fernandez_20241125;Timeout=1000",
"AdminConnectionString1": "SERVER=10.11.12.106;PORT=5432;UID=himsdbuser;PWD=dbuser@hims123!;database=fernandez_20241125;Timeout=1000",
"FTPConfiguration": { "FTPConfiguration": {
"Username": "admin", "Username": "admin",
"Password": "Fmh@xp@rt01", "Password": "Fmh@xp@rt01",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment