Commit 9fb3d669 authored by Sandeep Sagar Panjala's avatar Sandeep Sagar Panjala

initial commit

parent f2803262
namespace Hims.Shared.EntityModels
{
/// <summary>
/// The cpt code.
/// </summary>
public class CPTCodeModel
{
/// <summary>
/// Gets or sets the CPT code id.
/// </summary>
public int CPTCodeId { get; set; }
/// <summary>
/// Gets or sets the code.
/// </summary>
public string Code { get; set; }
/// <summary>
/// Gets or sets the description.
/// </summary>
public string Description { get; set; }
}
}
\ No newline at end of file
namespace Hims.Shared.EntityModels
{
using System;
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The coupon.
/// </summary>
public class ConsultationTypeModel
{
/// <summary>
/// Gets or sets the visit type id.
/// </summary>
[Key, Identity]
public int ConsultationTypeId { get; set; }
/// <summary>
/// Gets or sets the name.
/// </summary>
public string Name { get; set; }
/// <summary>
/// Gets or sets a value indicating whether active.
/// </summary>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int? CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime? CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets the total items.
/// </summary>
public int LocationId { get; set; }
/// <summary>
/// Gets or Sets the modified By Name.
/// </summary>
public string? ModifiedByName { get; set; }
/// <summary>
/// Gets or Sets the careted By Name.
/// </summary>
public string? CreatedByName { get; set; }
}
}
using System;
namespace Hims.Shared.EntityModels
{
public class CounsellingDetailModel
{
public int CounsellingDetailId { get; set; }
public int CounsellingId { get; set; }
public int PackageModuleDetailId { get; set; }
public short Quantity { get; set; }
public decimal? Amount { get; set; }
public bool IsFree { get; set; }
public bool Active { get; set; }
public int CreatedBy { get; set; }
public string CreatedByName { get; set; }
public DateTime CreatedDate { get; set; }
public int? ModifiedBy { get; set; }
public string ModifiedByName { get; set; }
public DateTime? ModifiedDate { get; set; }
}
}
using System;
namespace Hims.Shared.EntityModels
{
public class CounsellingModel
{
public int CounsellingId { get; set; }
public int CounsellingTypeId { get; set; }
public string CounsellingTypeName { get; set; }
public string CounsellingNo { get; set; }
public int LocationId { get; set; }
public string LocationName { get; set; }
public int PatientId { get; set; }
public string PatientName { get; set; }
public string UMRNo { get; set; }
public string PatientGender { get; set; }
public int PackageModuleId { get; set; }
public string PackageName { get; set; }
public string PackageTypeName { get; set; }
public string ModuleTypeName { get; set; }
public int ChargeCategoryId { get; set; }
public string ChargeCategoryName { get; set; }
public int ChargeModuleTemplateId { get; set; }
public string TemplateName { get; set; }
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
public short TotalQuantity { get; set; }
public decimal? SubTotal { get; set; }
public string DiscountType { get; set; }
public decimal? DiscountPercentage { get; set; }
public decimal? DiscountAmount { get; set; }
public decimal? PackageDiscount { get; set; }
public decimal Discount { get; set; }
public decimal? Total { get; set; }
public string PatientSignature { get; set; }
public string CounsellorSignature { get; set; }
public string PatientBase64Signature { get; set; }
public string CounsellorBase64Signature { get; set; }
public bool IsInUse { get; set; }
public int? PayTypeId { get; set; }
public string PayTypeName { get; set; }
public int? InsuranceCompanyId { get; set; }
public string InsuranceCompanyName { get; set; }
public int? TPAId { get; set; }
public string TPAName { get; set; }
public string PatientOrganization { get; set; }
public bool IsDraft { get; set; }
public bool Active { get; set; }
public int CreatedBy { get; set; }
public string CreatedByName { get; set; }
public int CreatedByRoleId { get; set; }
public DateTime CreatedDate { get; set; }
public int? ModifiedBy { get; set; }
public DateTime? ModifiedDate { get; set; }
public string ModifiedByName { get; set; }
public string Specializations { get; set; }
public string PatientSignatureRootPath { get; set; }
public string CounsellorSignatureRootPath { get; set; }
}
}
#nullable enable
namespace Hims.Shared.EntityModels
{
using System;
/// <summary>
/// The country.
/// </summary>
public class CountryModel
{
/// <summary>
/// Gets or sets the country id.
/// </summary>
public int CountryId { get; set; }
/// <summary>
/// Gets or sets the country name.
/// </summary>
public string CountryName { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the country code.
/// </summary>
public string CountryCode { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the iso code.
/// </summary>
public string ISOCode { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the sms url.
/// </summary>
public string? SMSUrl { get; set; }
/// <summary>
/// Gets or sets the sms from.
/// </summary>
public string? SMSFrom { get; set; }
/// <summary>
/// Gets or sets the sms authorization.
/// </summary>
public string? SMSAuthorization { get; set; }
/// <summary>
/// Gets or sets the sms username.
/// </summary>
public string? SMSUsername { get; set; }
/// <summary>
/// Gets or sets the Currency.
/// </summary>
public string Currency { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the Currency symbol.
/// </summary>
public char CurrencySymbol { get; set; }
/// <summary>
/// Gets or sets a value indicating whether active.
/// </summary>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int? CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets the Location id.
/// </summary>
public int? LocationId { get; set; }
}
}
namespace Hims.Shared.EntityModels
{
using System;
/// <summary>
/// The coupon.
/// </summary>
public class CouponModel
{
/// <summary>
/// Gets or sets the coupon id.
/// </summary>
public int CouponId { get; set; }
/// <summary>
/// Gets or sets the coupon code.
/// </summary>
public string CouponCode { get; set; }
/// <summary>
/// Gets or sets the coupon type.
/// </summary>
public char CouponType { get; set; }
/// <summary>
/// Gets or sets the coupon value.
/// </summary>
public decimal CouponValue { get; set; }
/// <summary>
/// Gets or sets the valid from.
/// </summary>
public DateTime ValidFrom { get; set; }
/// <summary>
/// Gets or sets the valid to.
/// </summary>
public DateTime ValidTo { get; set; }
/// <summary>
/// Gets or sets a value indicating whether active.
/// </summary>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime? CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets the allowed per user.
/// </summary>
public int? AllowedPerUser { get; set; }
/// <summary>
/// Gets or sets the Provider Ids.
/// </summary>
public string NotAllowedProviderIds { get; set; }
/// <summary>
/// Gets or sets the Patient Ids.
/// </summary>
public string NotAllowedPatientIds { get; set; }
/// <summary>
/// Gets or sets the Allowed for first appointment value.
/// </summary>
public bool? AllowedForFirstAppointment { get; set; }
/// <summary>
/// Gets or sets the total items.
/// </summary>
public int? TotalItems { get; set; }
/// <summary>
/// Gets the coupon discount value.
/// </summary>
public decimal? CouponDiscountValue { get; set; }
/// <summary>
/// Gets the amount after discount.
/// </summary>
public decimal? AmountAfterDiscount { get; set; }
/// <summary>
/// Gets the description.
/// </summary>
public string Description { get; set; }
// <summary>
/// Gets or sets the coupon id.
/// </summary>
public int? LocationId { get; set; }
}
}
namespace Hims.Shared.EntityModels
{
using System;
/// <summary>
/// The appointment.
/// </summary>
public class CubicleModel
{
/// <summary>
/// Gets or sets the widget id.
/// </summary>
public int CubicleId { get; set; }
/// <summary>
/// Gets or sets the widget name.
/// </summary>
public string Name { get; set; }
/// <summary>
/// Gets or sets the name of the provider.
/// </summary>
/// <value>
/// The name of the provider.
/// </value>
public string ProviderName { get; set; }
/// <summary>
/// Gets or sets the name of the active status.
/// </summary>
/// <value>
/// The name of the active status.
/// </value>
public string ActiveStatusName { get; set; }
/// <summary>
/// Gets or sets the active status id.
/// </summary>
public int ActiveStatusId { get; set; }
/// <summary>
/// Gets or sets the account id.
/// </summary>
public int? ProviderId { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created by name.
/// </summary>
public string CreatedByName { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified by name.
/// </summary>
public string ModifiedByName { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets the Log From.
/// </summary>
public short? LogFrom { get; set; }
/// <summary>
/// Gets or sets the Total items.
/// </summary>
public int? TotalItems { get; set; }
/// <summary>
/// Gets or sets the Location Id.
/// </summary>
public int? LocationId { get; set; }
/// <summary>
/// Gets or sets the Location Name.
/// </summary>
public string LocationName { get; set; }
/// <summary>
/// Gets or sets Assigned/UnAssigned Cubicles.
/// </summary>
public int? Assign { get; set; }
public int? AccountId { get; set; }
public string AssignedName { get; set; }
}
}
namespace Hims.Shared.EntityModels
{
using System;
/// <summary>
/// The appointment.
/// </summary>
public class DashboardConfigModel
{
/// <summary>
/// Gets or sets the config id.
/// </summary>
public int? DashboardConfigId { get; set; }
/// <summary>
/// Gets or sets the dashboard configuration master identifier.
/// </summary>
/// <value>
/// The dashboard configuration master identifier.
/// </value>
public int DashboardConfigMasterId { get; set; }
/// <summary>
/// Gets or sets the widget id.
/// </summary>
public int DashboardWidgetId { get; set; }
/// <summary>
/// Gets or sets the dashboard widget type identifier.
/// </summary>
/// <value>
/// The dashboard widget type identifier.
/// </value>
public int DashboardWidgetTypeId { get; set; }
/// <summary>
/// Gets or sets the dashboard widget count type identifier.
/// </summary>
/// <value>
/// The dashboard widget count type identifier.
/// </value>
public int? DashboardWidgetCountTypeId { get; set; }
/// <summary>
/// Gets or sets the row number.
/// </summary>
/// <value>
/// The row number.
/// </value>
public int RowNumber { get; set; }
/// <summary>
/// Gets or sets the size.
/// </summary>
/// <value>
/// The size.
/// </value>
public int Size { get; set; }
/// <summary>
/// Gets or sets the sequence number.
/// </summary>
/// <value>
/// The sequence number.
/// </value>
public int SequenceNumber { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created by name.
/// </summary>
public string CreatedByName { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified by name.
/// </summary>
public string ModifiedByName { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets the Log From.
/// </summary>
public short? LogFrom { get; set; }
/// <summary>
/// Gets or sets the Log From.
/// </summary>
public string? WidgetName { get; set; }
/// <summary>
/// Gets or sets the name of the stored procedure.
/// </summary>
/// <value>
/// The name of the stored procedure.
/// </value>
public string? StoredProcedureName { get; set; }
/// <summary>
/// Gets or sets the name of the count type.
/// </summary>
/// <value>
/// The name of the count type.
/// </value>
public string? CountTypeName { get; set; }
/// <summary>
/// Gets or sets the icon.
/// </summary>
/// <value>
/// The icon.
/// </value>
public string? Icon { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is role dashboard.
/// </summary>
/// <value>
/// <c>true</c> if this instance is role dashboard; otherwise, <c>false</c>.
/// </value>
public bool IsRoleDashboard { get; set; }
/// <summary>
/// Gets or sets the default values.
/// </summary>
/// <value>
/// The default values.
/// </value>
public string DefaultValues { get; set; }
}
}
namespace Hims.Shared.EntityModels
{
using System;
/// <summary>
/// The appointment.
/// </summary>
public class DashboardActivateOrDeactivateWidgetModel
{
/// <summary>
/// Gets or sets the widget id.
/// </summary>
public int DashboardWidgetId { get; set; }
/// <summary>
/// Gets or sets the widget name.
/// </summary>
public string Name { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified by name.
/// </summary>
public string ModifiedByName { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime ModifiedDate { get; set; }
/// <summary>
/// Gets or sets the status.
/// </summary>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the Log From.
/// </summary>
public short LogFrom { get; set; }
/// <summary>
/// Gets or sets the location Id.
/// </summary>
public int? LocationId { get; set; }
}
}
namespace Hims.Shared.EntityModels
{
using System;
using System.Collections.Generic;
/// <summary>
/// The appointment.
/// </summary>
public class DashboardWidgetModel
{
/// <summary>
/// Gets or sets the widget id.
/// </summary>
public int? DashboardWidgetId { get; set; }
/// <summary>
/// Gets or sets the widget name.
/// </summary>
public string Name { get; set; }
/// <summary>
/// Gets or sets the name of the count type.
/// </summary>
/// <value>
/// The name of the count type.
/// </value>
public string CountTypeName { get; set; }
/// <summary>
/// Gets or sets the widget type id.
/// </summary>
public int DashboardWidgetTypeId { get; set; }
/// <summary>
/// Gets or sets the dashboard widget count type identifier.
/// </summary>
/// <value>
/// The dashboard widget count type identifier.
/// </value>
public int? DashboardWidgetCountTypeId { get; set; }
/// <summary>
/// Gets or sets the widget type.
/// </summary>
public string Type { get; set; }
/// <summary>
/// Gets or sets the count type identifier.
/// </summary>
/// <value>
/// The count type identifier.
/// </value>
public int? CountTypeId { get; set; }
/// <summary>
/// Gets or sets the icon.
/// </summary>
/// <value>
/// The icon.
/// </value>
public string Icon { get; set; }
/// <summary>
/// Gets or sets the stored procedure name.
/// </summary>
public string StoredProcedureName { get; set; }
/// <summary>
/// Gets or sets the execute sp.
/// </summary>
/// <value>
/// The execute sp.
/// </value>
public string ExecSp { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created by name.
/// </summary>
public string CreatedByName { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified by name.
/// </summary>
public string ModifiedByName { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets the status.
/// </summary>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the Log From.
/// </summary>
public short? LogFrom { get; set; }
/// <summary>
/// Gets or sets the Total items.
/// </summary>
public int? TotalItems { get; set; }
/// <summary>
/// gets or sets the roleId.
/// </summary>
public List<int> Roles { get; set; }
/// <summary>
/// gets or sets the roleId.
/// </summary>
public string RolesStr { get; set; }
/// <summary>
/// Gets or sets the Location Id.
/// </summary>
public int? LocationId { get; set; }
}
}
#nullable enable
namespace Hims.Shared.EntityModels
{
using System;
/// <summary>
/// The dental encounter model.
/// </summary>
public class DentalEncounterModel
{
/// <summary>
/// Gets or sets the dental encounter id.
/// </summary>
public int DentalEncounterId { get; set; }
/// <summary>
/// Gets or sets the appointment id.
/// </summary>
public int AppointmentId { get; set; }
/// <summary>
/// Gets or sets the dental encounter date.
/// </summary>
public DateTime DentalEncounterDate { get; set; }
/// <summary>
/// Gets or sets a value indicating whether active.
/// </summary>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets the medical history.
/// </summary>
public string? MedicalHistory { get; set; }
/// <summary>
/// Gets or sets the dental history.
/// </summary>
public string? DentalHistory { get; set; }
/// <summary>
/// Gets or sets the family history.
/// </summary>
public string? FamilyHistory { get; set; }
/// <summary>
/// Gets or sets the oral hygiene.
/// </summary>
public string? OralHygiene { get; set; }
/// <summary>
/// Gets or sets the clinical findings.
/// </summary>
public string? ClinicalFindings { get; set; }
/// <summary>
/// Gets or sets the diagnosis.
/// </summary>
public string? Diagnosis { get; set; }
/// <summary>
/// Gets or sets the medications.
/// </summary>
public string? Medications { get; set; }
/// <summary>
/// Gets or sets the personal habits.
/// </summary>
public string? PersonalHabits { get; set; }
/// <summary>
/// Gets or sets the chief complaints.
/// </summary>
public string? ChiefComplaints { get; set; }
/// <summary>
/// Gets or sets the medication comment.
/// </summary>
public string? MedicationComment { get; set; }
/// <summary>
/// Gets or sets the symptoms.
/// </summary>
public string? Symptoms { get; set; }
}
}
#nullable enable
namespace Hims.Shared.EntityModels
{
using System;
/// <summary>
/// The dental full transcript model.
/// </summary>
public class DentalFullTranscriptModel
{
/// <summary>
/// Gets or sets the appointment id.
/// </summary>
public int AppointmentId { get; set; }
/// <summary>
/// Gets or sets the appointment no.
/// </summary>
public string AppointmentNo { get; set; }
/// <summary>
/// Gets or sets the patient id.
/// </summary>
public int PatientId { get; set; }
/// <summary>
/// Gets or sets the patient name.
/// </summary>
public string? PatientName { get; set; }
/// <summary>
/// Gets or sets the patient gender.
/// </summary>
public char? PatientGender { get; set; }
/// <summary>
/// Gets or sets the patient mobile.
/// </summary>
public string? PatientMobile { get; set; }
/// <summary>
/// Gets or sets the patient thumbnail url.
/// </summary>
public string? PatientThumbnailUrl { get; set; }
/// <summary>
/// Gets or sets the patient age.
/// </summary>
public short? PatientAge { get; set; }
/// <summary>
/// Gets or sets the patient date of birth.
/// </summary>
public DateTime? PatientDateOfBirth { get; set; }
/// <summary>
/// Gets or sets the patient country code.
/// </summary>
public string? PatientCountryCode { get; set; }
/// <summary>
/// Gets or sets the appointment date.
/// </summary>
public DateTime AppointmentDate { get; set; }
/// <summary>
/// Gets or sets the appointment time.
/// </summary>
public TimeSpan AppointmentTime { get; set; }
/// <summary>
/// Gets or sets the AppointmentTimeString
/// </summary>
public string? AppointmentTimeString { get; set; }
/// <summary>
/// Gets or sets the dental encounter id.
/// </summary>
public int DentalEncounterId { get; set; }
/// <summary>
/// Gets or sets the medical history.
/// </summary>
public string? MedicalHistory { get; set; }
/// <summary>
/// Gets or sets the dental history.
/// </summary>
public string? DentalHistory { get; set; }
/// <summary>
/// Gets or sets the family history.
/// </summary>
public string? FamilyHistory { get; set; }
/// <summary>
/// Gets or sets the oral hygiene.
/// </summary>
public string? OralHygiene { get; set; }
/// <summary>
/// Gets or sets the clinical findings.
/// </summary>
public string? ClinicalFindings { get; set; }
/// <summary>
/// Gets or sets the diagnosis.
/// </summary>
public string? Diagnosis { get; set; }
/// <summary>
/// Gets or sets the medications.
/// </summary>
public string? Medications { get; set; }
/// <summary>
/// Gets or sets the personal habits.
/// </summary>
public string? PersonalHabits { get; set; }
/// <summary>
/// Gets or sets the chief complaints.
/// </summary>
public string? ChiefComplaints { get; set; }
/// <summary>
/// Gets or sets the provider name.
/// </summary>
public string? ProviderName { get; set; }
/// <summary>
/// Gets or sets the medication comment.
/// </summary>
public string? MedicationComment { get; set; }
}
}
namespace Hims.Shared.EntityModels
{
using System;
/// <summary>
/// The dental prescription model.
/// </summary>
public class DentalPrescriptionModel
{
/// <summary>
/// Gets or sets the appointment id.
/// </summary>
public int AppointmentId { get; set; }
/// <summary>
/// Gets or sets the appointment date.
/// </summary>
public DateTime AppointmentDate { get; set; }
/// <summary>
/// Gets or sets the appointment time.
/// </summary>
public TimeSpan AppointmentTime { get; set; }
/// <summary>
/// Gets or sets the appointment time string.
/// </summary>
public string AppointmentTimeString { get; set; }
/// <summary>
/// Gets or sets the encounter id.
/// </summary>
public int DentalEncounterId { get; set; }
/// <summary>
/// Gets or sets the medications.
/// </summary>
public string Medications { get; set; }
/// <summary>
/// Gets or sets the provider name.
/// </summary>
public string ProviderName { get; set; }
/// <summary>
/// Gets or sets the specialization name.
/// </summary>
public string SpecializationName { get; set; }
/// <summary>
/// Gets or sets the practice name.
/// </summary>
public string PracticeName { get; set; }
/// <summary>
/// Gets or sets the practice location.
/// </summary>
public string PracticeLocation { get; set; }
/// <summary>
/// Gets or sets the patient name.
/// </summary>
public string PatientName { get; set; }
/// <summary>
/// Gets or sets the patient gender.
/// </summary>
public string PatientGender { get; set; }
/// <summary>
/// Gets or sets the patient age.
/// </summary>
public short PatientAge { get; set; }
/// <summary>
/// Gets or sets the patient date of birth.
/// </summary>
public DateTime? PatientDateOfBirth { get; set; }
/// <summary>
/// Gets or sets the patient mobile.
/// </summary>
public string PatientMobile { get; set; }
/// <summary>
/// Gets or sets the provider no.
/// </summary>
public string ProviderNo { get; set; }
/// <summary>
/// Gets or sets the appointment no.
/// </summary>
public string AppointmentNo { get; set; }
/// <summary>
/// Gets or sets the educations.
/// </summary>
public string Educations { get; set; }
/// <summary>
/// Gets or sets the medication comment.
/// </summary>
public string MedicationComment { get; set; }
}
}
using System;
using System.Collections.Generic;
using System.Text;
namespace Hims.Shared.EntityModels
{
public class DenverchartModel
{
/// <summary>Gets or sets the denver chart id.</summary>
/// <summary>
/// Gets or sets the denver chart id.
/// </summary>
public int DenverchartId { get; set; }
/// <summary>Gets or sets the itemname.</summary>
public string ItemName { get; set; }
/// <summary>Gets or sets the date of visit.</summary>
public string DateOfVisit { get; set; }
/// <summary>Gets or sets the comments.</summary>
public string Comments { get; set; }
/// <summary>Gets or sets the receiver type.</summary>
public int CreatedBy { get; set; }
/// <summary>Gets or sets the created date.</summary>
public DateTime CreatedDate { get; set; }
/// <summary>Gets or sets status.</summary>
public bool Active { get; set; }
public string CreatedByName { get; set; }
}
}
namespace Hims.Shared.EntityModels
{
using System;
using System.Collections.Generic;
/// <summary>
/// The coupon.
/// </summary>
public class DepartmentModel
{
/// <summary>
/// Gets or sets the bed id.
/// </summary>
public int DepartmentId { get; set; }
/// <summary>
/// Gets or sets the coupon code.
/// </summary>
public string DepartmentName { get; set; }
/// <summary>
/// Gets or sets the bed id.
/// </summary>
public int Cost { get; set; }
/// <summary>
/// Gets or sets the coupon code.
/// </summary>
public string ChargeGroupName { get; set; }
/// <summary>
/// Gets or sets the coupon code.
/// </summary>
public string ChargeName { get; set; }
/// <summary>
/// Gets or sets a value indicating whether active.
/// </summary>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the name of the created by.
/// </summary>
/// <value>
/// The name of the created by.
/// </value>
public string CreatedByName { get; set; }
/// <summary>
/// Gets or sets the name of the modified by.
/// </summary>
/// <value>
/// The name of the modified by.
/// </value>
public string ModifiedByName { get; set; }
/// <summary>
/// Gets or sets the modified by role.
/// </summary>
/// <value>
/// The modified by role.
/// </value>
public string ModifiedByRole { get; set; }
/// <summary>
/// Gets or sets the created by role.
/// </summary>
/// <value>
/// The created by role.
/// </value>
public string CreatedByRole { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime? CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public int TotalItems { get; set; }
/// <summary>
/// Gets or sets the page index.
/// </summary>
public int PageIndex { get; set; }
/// <summary>
/// Gets or sets the page size.
/// </summary>
public int PageSize { get; set; }
/// <summary>
/// Gets or Sets the Ward Name.
/// </summary>
public string? WardName { get; set; }
/// <summary>
/// Gets or sets the location ids.
/// </summary>
/// <value>
/// The location ids.
/// </value>
public string LocationIds { get; set; }
/// <summary>
/// Gets or sets the location identifier.
/// </summary>
/// <value>
/// The location identifier.
/// </value>
public int? LocationId { get; set; }
/// <summary>
/// Gets or sets the name of the location.
/// </summary>
/// <value>
/// The name of the location.
/// </value>
public string LocationNames { get; set; }
/// <summary>
/// Gets or sets the allowed user.
/// </summary>
/// <value>
/// The allowed user.
/// </value>
public string AllowedUser { get; set; }
/// <summary>
/// Gets or sets the name of the module.
/// </summary>
/// <value>
/// The name of the module.
/// </value>
public string ModuleName { get; set; }
/// <summary>
/// Gets or sets the name of the module.
/// </summary>
/// <value>
/// The name of the module.
/// </value>
public string DeptType { get; set; }
}
}
using System;
using System.Collections.Generic;
using System.Text;
namespace Hims.Shared.EntityModels
{
public class DietConditionsDetailModel
{
/// <summary>
/// Gets or sets the diet item id.
/// </summary>
public int ConditionId { get; set; }
/// <summary>
/// Gets or sets the name.
/// </summary>
public string ConditionName { get; set; }
/// <summary>
/// Gets or sets the active or inactive.
/// </summary>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
public string CreatedByName { get; set; }
public string? ModifiedByName { get; set; }
public int ConditionDetailId { get; set; }
public int? DietItemsId { get; set; }
public int? MeasureId { get; set; }
public int? DietSlotId { get; set; }
public string Quantity { get; set; }
public string EncryptedConditionId { get; set; }
public string DietShiftName { get; set; }
public string MeasureName { get; set; }
public string DietItemsName { get; set; }
public string ShiftIds { get; set; }
public int? LocationId { get; set; }
}
}
using System;
using System.Collections.Generic;
using System.Text;
namespace Hims.Shared.EntityModels
{
public class DietConditionsModel
{
/// <summary>
/// Gets or sets the diet item id.
/// </summary>
public int ConditionId { get; set; }
/// <summary>
/// Gets or sets the name.
/// </summary>
public string ConditionName { get; set; }
/// <summary>
/// Gets or sets the active or inactive.
/// </summary>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
public string CreatedByName { get; set; }
public string? ModifiedByName { get; set; }
public string Quantity { get; set; }
public string EncryptedConditionId { get; set; }
public string DietShiftName { get; set; }
public string MeasureName { get; set; }
public string DietItemsName { get; set; }
public string ShiftIds { get; set; }
public int? LoginRoleId { get; set; }
public int? LocationId{ get; set; }
}
}
using Hims.Shared.Dapper.Attributes;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Hims.Shared.EntityModels
{
public class DietEncounterModel
{
/// <summary>
///
/// </summary>
[Key, Identity]
public int DietEncounterId { get; set; }
/// <summary>
///
/// </summary>
[IgnoreUpdate]
public int? AppointmentId { get; set; }
/// <summary>
///
/// </summary>
public DateTime DietEcounterDate { get; set; }
public int? AdmissionId { get; set; }
public bool Active { get; set; }
public string DietPlanPrescribed { get; set; }
public string OpNutritionScreeningForm { get; set; }
public string OpNutritionalAssessmentForm { get; set; }
public string IpNutritionalScreeningForm { get; set; }
public string PediatricCDCScreeningForm { get; set; }
public string DietGuideLines { get; set; }
public string SyndromesFormP { get; set; }
public string OrderPrescription { get; set; }
public string ReferralForm { get; set; }
[IgnoreUpdate]
public int CreatedBy { get; set; }
[IgnoreUpdate]
public DateTime CreatedDate { get; set; }
public int? ModifiedBy { get; set; }
public DateTime? ModifiedDate { get; set; }
public string SpecialFeature { get; set; }
}
}
using System;
using System.Collections.Generic;
using System.Text;
namespace Hims.Shared.EntityModels
{
public class DietFullTrascriptModel
{
/// <summary>
/// Gets or sets the diet encounter id.
/// </summary>
public int DietEncounterId { get; set; }
/// <summary>
/// Gets or sets the appointment id.
/// </summary>
public int? AppointmentId { get; set; }
/// <summary>
/// Gets or sets the admission identifier.
/// </summary>
/// <value>
/// The admission identifier.
/// </value>
public int? AdmissionId { get; set; }
/// <summary>
/// Gets or sets the encounter date.
/// </summary>
public DateTime EncounterDate { get; set; }
/// <summary>
/// Gets or sets the vitals.
/// </summary>
public string? Vitals { get; set; }
/// <summary>
/// Gets or sets a value indicating whether active.
/// </summary>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets the educations.
/// </summary>
public string? Educations { get; set; }
/// <summary>
/// Gets or sets the provider name.
/// </summary>
public string? ProviderName { get; set; }
/// <summary>
/// Gets or sets the provider no.
/// </summary>
public string? ProviderNo { get; set; }
/// <summary>
/// Gets or sets the specialization name.
/// </summary>
public string? SpecializationName { get; set; }
/// <summary>
/// Gets or sets the practice name.
/// </summary>
public string? PracticeName { get; set; }
/// <summary>
/// Gets or sets the practice location.
/// </summary>
public string? PracticeLocation { get; set; }
/// <summary>
/// Gets or sets the signature.
/// </summary>
public string? Signature { get; set; }
/// <summary>
/// Gets or sets the clinic picture.
/// </summary>
public string? ClinicPicture { get; set; }
/// <summary>
/// Gets or sets the AppointmentTimeString
/// </summary>
public string? AppointmentTimeString { get; set; }
/// <summary>
/// Gets or sets the appointment time.
/// </summary>
public TimeSpan AppointmentTime { get; set; }
/// <summary>
/// Gets or sets the patient id.
/// </summary>
public int PatientId { get; set; }
/// <summary>
/// Gets or sets the patient name.
/// </summary>
public string? PatientName { get; set; }
/// <summary>
/// Gets or sets the patient gender.
/// </summary>
public char? PatientGender { get; set; }
/// <summary>
/// Gets or sets the patient mobile.
/// </summary>
public string? PatientMobile { get; set; }
/// <summary>
/// Gets or sets the patient umrNo.
/// </summary>
public string PatientNo { get; set; }
/// <summary>
/// Gets or sets the patient thumbnail url.
/// </summary>
public string? PatientThumbnailUrl { get; set; }
/// <summary>
/// Gets or sets the patient age.
/// </summary>
public short? PatientAge { get; set; }
/// <summary>
/// Gets or sets the patient date of birth.
/// </summary>
public DateTime? PatientDateOfBirth { get; set; }
/// <summary>
/// Gets or sets the patient country code.
/// </summary>
public string? PatientCountryCode { get; set; }
/// <summary>
/// Gets or sets the appointment date.
/// </summary>
public DateTime AppointmentDate { get; set; }
/// <summary>
/// Gets or sets the appointment no.
/// </summary>
public string AppointmentNo { get; set; }
/// <summary>
/// Gets or sets the order prescription.
/// </summary>
public string? OrderPrescription { get; set; }
public string SpecialFeature { get; set; }
public string DietPlanPrescribed { get; set; }
public string OpNutritionScreeningForm { get; set; }
public string OpNutritionalAssessmentForm { get; set; }
public string IpNutritionalScreeningForm { get; set; }
public string PediatricCDCScreeningForm { get; set; }
public string DietGuideLines { get; set; }
public string SyndromesFormP { get; set; }
public string ReferralForm { get; set; }
public string GynHistory { get; set; }
public string MeasureCommonData { get; set; }
}
}
namespace Hims.Shared.EntityModels
{
using System;
/// <summary>
/// The coupon.
/// </summary>
public class DietGuidLinesModel
{
/// <summary>
/// Gets or sets the bed id.
/// </summary>
public int DietGuidLinesId { get; set; }
public string DietGuidLinesName { get; set; }
/// <summary>
/// Gets or sets the coupon code.
/// </summary>
public string ContentType { get; set; }
public string PdfLink { get; set; }
public int? DietTypeId { get; set; }
public string DietTypeName { get; set; }
public string DocumentUrl { get; set; }
/// <summary>
/// Gets or sets the size.
/// </summary>
public float Size { get; set; }
/// <summary>
/// Gets or sets a value indicating whether active.
/// </summary>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime? CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets the total items.
/// </summary>
public int? TotalItems { get; set; }
public int? PageIndex { get; set; }
public int? PageSize { get; set; }
public string CreatedByName { get; set; }
public string ModifiedByName { get; set; }
}
/// <summary>
/// The patient document filter model.
/// </summary>
public class DocumentViewModel
{
/// <summary>
/// gets or sets the base64.
/// </summary>
public string? Base64 { get; set; }
/// <summary>
/// gets or sets the DocumentUrl.
/// </summary>
public string? DocumentUrl { get; set; }
/// <summary>
/// gets or sets the FTP ErrorMessage.
/// </summary>
public string? ErrorMessage { get; set; }
}
}

using System;
using System.Collections.Generic;
using System.Text;
namespace Hims.Shared.EntityModels
{
public class DietItemsModel
{
/// <summary>
/// Gets or sets the diet item id.
/// </summary>
public int DietItemsId { get; set; }
/// <summary>
/// Gets or sets the name.
/// </summary>
public string DietItemsName { get; set; }
/// <summary>
/// Gets or sets the active or inactive.
/// </summary>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets the login role identifier.
/// </summary>
/// <value>
/// The login role identifier.
/// </value>
public short? LoginRoleId { get; set; }
/// <summary>
/// Gets or sets the name of the created by.
/// </summary>
/// <value>
/// The name of the created by.
/// </value>
public string? CreatedByName { get; set; }
/// <summary>
/// Gets or sets the name of the modified name.
/// </summary>
/// <value>
/// The name of the modified by.
/// </value>
public string? ModifiedByName { get; set; }
public int MeasureId { get; set; }
public string MeasureName { get; set; }
}
}

using System;
namespace Hims.Domain.Entities
{
public class DietPlanModel
{/// <summary>
/// Gets or sets the diet plan id.
/// </summary>
public int DietPlanId { get; set; }
/// <summary>
/// Gets or sets the appointment id.
/// </summary>
public int AppointmentId { get; set; }
/// <summary>
/// Gets or sets the patient id.
/// </summary>
public int PatientId { get; set; }
/// <summary>
/// Gets or sets the diet guide lines id.
/// </summary>
public int DietGuidLinesId { get; set; }
/// <summary>
/// Gets or sets the encounter type.
/// </summary>
public string EncounterType { get; set; }
/// <summary>
/// Gets or sets the encounter id.
/// </summary>
public int? EncounterId { get; set; }
/// <summary>
/// Gets or sets the status.
/// </summary>
public bool Status { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets a value indicating whether active.
/// </summary>
public bool Active { get; set; }
}
}
using Hims.Shared.Dapper.Attributes;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Hims.Shared.EntityModels
{
public class DietSlotsModel
{
/// <summary>
/// Gets or sets the diet id.
/// </summary>
public int DietSlotId { get; set; }
/// <summary>
/// Gets or sets the name.
/// </summary>
public string Name { get; set; }
/// <summary>
/// Gets or sets the start time.
/// </summary>
public string StartTime { get; set; }
/// <summary>
/// Gets or sets the end time.
/// </summary>
public string EndTime { get; set; }
/// <summary>
/// Gets or sets the active or inactive.
/// </summary>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets the login role identifier.
/// </summary>
/// <value>
/// The login role identifier.
/// </value>
public short? LoginRoleId { get; set; }
/// <summary>
/// Gets or sets the name of the created by.
/// </summary>
/// <value>
/// The name of the created by.
/// </value>
public string? CreatedByName { get; set; }
/// <summary>
/// Gets or sets the name of the modified name.
/// </summary>
/// <value>
/// The name of the modified by.
/// </value>
public string? ModifiedByName { get; set; }
public int? LocationId { get; set; }
/// <summary>
/// Gets or sets the name of the created by.
/// </summary>
/// <value>
/// The name of the created by.
/// </value>
public string? LocationName { get; set; }
/// <summary>
/// Gets or sets the name.
/// </summary>
public string ConditionName { get; set; }
public int? ConditionId { get; set; }
public string ShiftIds { get; set; }
}
}
using System;
namespace Hims.Shared.EntityModels
{
/// <summary>
/// The role.
/// </summary>
public class DischargeModel
{
/// <summary>
/// Gets or sets the discharge instruction identifier.
/// </summary>
/// <value>
/// The discharge instruction identifier.
/// </value>
public int DischargeInstructionId { get; set; }
/// <summary>
/// Gets or sets the role name.
/// </summary>
public string DischargeInstructionName { get; set; }
/// <summary>
/// Gets or sets a value indicating whether active.
/// </summary>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime? CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets the total items.
/// </summary>
public int? TotalItems { get; set; }
/// <summary>
/// Gets or sets the modified by name.
/// </summary>
public string? ModifiedByName { get; set; }
/// <summary>
/// Gets or sets the created by name.
/// </summary>
public string? CreatedByName { get; set; }
/// <summary>
/// Gets or sets the created by role
/// </summary>
public string? CreatedByRole { get; set; }
/// <summary>
/// Gets or sets the Created by Role.
/// </summary>
public string? ModifiedByRole { get; set; }
}
}
#nullable enable
namespace Hims.Shared.EntityModels
{
using System;
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
/// <summary>
/// The provider location.
/// </summary>
public class DoctorAvailabilityVisitTypeModel
{
/// <summary>
/// Gets or sets the Provider Availability Visit Id
/// </summary>
public int DoctorAvailabilityVisitTypeId { get; set; }
/// <summary>
/// Gets or sets the visit type id.
/// </summary>
public int? VisitTypeId { get; set; }
/// <summary>
/// Gets or sets the duration.
/// </summary>
public int? Duration { get; set; }
/// <summary>
/// Gets or sets a value indicating whether active.
/// </summary>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets the provider id.
/// </summary>
public int? ProviderId { get; set; }
/// <summary>
/// Gets or sets the specialization id.
/// </summary>
public int? SpecializationId { get; set; }
/// <summary>
/// Gets or sets the locationId.
/// </summary>
public int? LocationId { get; set; }
/// <summary>
/// Gets or sets the full name.
/// </summary>
public string FullName { get; set; }
}
}
#nullable enable
namespace Hims.Shared.EntityModels
{
using System;
/// <summary>
/// The account.
/// </summary>
public class DoctorDeviceDetailsModel
{
/// <summary>
/// Gets or sets the is webcam on.
/// </summary>
public bool? IsWebcamOn { get; set; }
/// <summary>
/// Gets or sets the is mic on.
/// </summary>
public bool? IsMicOn { get; set; }
/// <summary>
/// Gets or sets the appointment id.
/// </summary>
public int? AppointmentId { get; set; }
/// <summary>
/// Gets or sets the caller id.
/// </summary>
public string? CallerId { get; set; }
/// <summary>
/// Gets or sets the ringed at.
/// </summary>
public DateTime? RingedAt { get; set; }
/// <summary>
/// Gets or sets the call started at.
/// </summary>
public DateTime? CallStartedAt { get; set; }
/// <summary>
/// Gets or sets the call lifted at.
/// </summary>
public DateTime? CallLiftedAt { get; set; }
/// <summary>
/// Gets or sets the call ended at.
/// </summary>
public DateTime? CallEndedAt { get; set; }
/// <summary>
/// Gets or sets the duration.
/// </summary>
public string? Duration { get; set; }
/// <summary>
/// Gets or sets the status.
/// </summary>
public string? Status { get; set; }
/// <summary>
/// Gets or sets the reason.
/// </summary>
public string? Reason { get; set; }
}
}
\ No newline at end of file
using Hims.Shared.Dapper.Attributes;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Hims.Shared.EntityModels
{
public class DriverDetailModel
{
/// <summary>
///
/// </summary>
[Key, Identity]
public int DriverDetailId { get; set; }
/// <summary>
///
/// </summary>
public string DriverDetailName { get; set; }
/// <summary>
///
/// </summary>
public string MobileNo { get; set; }
/// <summary>
///
/// </summary>
public string AadharNo { get; set; }
/// <summary>
///
/// </summary>
public bool Active { get; set; }
/// <summary>
///
/// </summary>
[IgnoreUpdate]
public int CreatedBy { get; set; }
/// <summary>
///
/// </summary>
[IgnoreUpdate]
public DateTime CreatedDate { get; set; }
/// <summary>
///
/// </summary>
/// <value>
/// The modified by.
/// </value>
public int? ModifiedBy { get; set; }
/// <summary>
///
/// </summary>
/// <value>
/// The modified date.
/// </value>
public DateTime? ModifiedDate { get; set; }
///
/// </summary>
public string Address { get; set; }
/// <summary>
///
/// </summary>
/// <value>
/// The modified date.
/// </value>
public string FromTime { get; set; }
/// <summary>
///
/// </summary>
/// <value>
/// The modified date.
/// </value>
public string ToTime { get; set; }
/// <summary>
///
/// </summary>
public string CreatedByName { get; set; }
/// <summary>
///
/// </summary>
public string ModifiedByName { get; set; }
}
}
#nullable enable
namespace Hims.Shared.EntityModels
{
using System;
/// <summary>
/// The auditLog.
/// </summary>
public class DynamicReportFilterModel
{
///// <summary>
///// Gets or sets the dynamic report id.
///// </summary>
//public int QueryRes { get; set; }
/// <summary>
/// Gets or sets the index of the page.
/// </summary>
/// <value>
/// The index of the page.
/// </value>
public int PageIndex { get; set; }
/// <summary>
/// Gets or sets the size of the page.==
/// </summary>
/// <value>
/// The size of the page.
/// </value>
public int PageSize { get; set; }
}
}
\ No newline at end of file
using System;
using System.Collections.Generic;
using System.Text;
namespace Hims.Shared.EntityModels
{
public class DynamicReportImagesModel
{
/// <summary>
/// Gets or sets the dynamicreport id.
/// </summary>
public int DynamicReportImagesId { get; set; }
/// <summary>
/// Gets or sets the imagePath.
/// </summary>
public string? ImagePath { get; set; }
/// <summary>
/// Gets or sets the guid.
/// </summary>
public Guid? Guid { get; set; }
/// <summary>
/// Gets or sets the createdby.
/// </summary>
public int? CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets the base64image.
/// </summary>
public string? Base64Image { get; set; }
}
}
#nullable enable
namespace Hims.Shared.EntityModels
{
using System;
/// <summary>
/// The auditLog.
/// </summary>
public class DynamicReportModel
{
/// <summary>
/// Gets or sets the dynamic report id.
/// </summary>
public int? DynamicReportId { get; set; }
/// <summary>
/// Gets or sets the executable Query.
/// </summary>
public string? EncryptedDynamicReportId { get; set; }
/// <summary>
/// Gets or sets the Query name.
/// </summary>
public string? Name { get; set; }
/// <summary>
/// Gets or sets the executable Query.
/// </summary>
public string? Data { get; set; }
/// <summary>
/// Gets or sets the Status.
/// </summary>
public int? CreatedBy { get; set; }
/// <summary>
/// Gets or sets the Status.
/// </summary>
public string? CreatedByName { get; set; }
/// <summary>
/// Gets or sets the Status.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the Status.
/// </summary>
public string? ModifiedByName { get; set; }
/// <summary>
/// Gets or sets the Status.
/// </summary>
public bool? Active { get; set; }
/// <summary>
/// Gets or sets the dynamic report id.
/// </summary>
public int? TotalItems { get; set; }
//===============================================================
///// <summary>
///// Gets or sets the index of the page.
///// </summary>
///// <value>
///// The index of the page.
///// </value>
//public int PageIndex { get; set; }
///// <summary>
///// Gets or sets the size of the page.==
///// </summary>
///// <value>
///// The size of the page.
///// </value>
//public int PageSize { get; set; }
}
}
\ No newline at end of file
using System;
namespace Hims.Shared.EntityModels
{
/// <summary>
/// The encounter.
/// </summary>
public class EmergencyEncounterModel
{
/// <summary>
/// Gets or sets the emergency encounter id.
/// </summary>
public int EmergencyEncounterId { get; set; }
/// <summary>
/// Gets or sets the appointment id.
/// </summary>
public int? AppointmentId { get; set; }
/// <summary>
/// Get or sets patient Id
/// </summary>
public int? PatientId { get; set; }
/// <summary>
/// Gets or sets the abdomen.
/// </summary>
public string? EmergencyTriage { get; set; }
/// <summary>
/// Gets or sets the additional Labs.
/// </summary>
public string? NursingERForm { get; set; }
/// <summary>
/// Gets or sets a value indicating whether active.
/// </summary>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ProviderId { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public string? UMRNo { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public string? AppointmentTime { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public string? PatientName { get; set; }
}
}
\ No newline at end of file
namespace Hims.Shared.EntityModels
{
using System;
/// <summary>
/// The employee shift model.
/// </summary>
public class EmployeeShiftModel
{
/// <summary>
/// Gets or sets the employee shift id.
/// </summary>
public int EmployeeShiftId { get; set; }
/// <summary>
/// Gets or sets the widget name.
/// </summary>
public string EmployeeShiftName { get; set; }
/// <summary>
/// Gets or sets the start time.
/// </summary>
public string StartTime { get; set; }
/// <summary>
/// Gets or sets the end time.
/// </summary>
public string EndTime { get; set; }
/// <summary>
/// Gets or sets the note.
/// </summary>
public string Note { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets the active.
/// </summary>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the location id.
/// </summary>
public int LocationId { get; set; }
/// <summary>
/// Gets or sets the location name.
/// </summary>
public string LocationName { get; set; }
/// <summary>
/// Gets or sets the location id.
/// </summary>
public int TotalItems { get; set; }
}
}
#nullable enable
namespace Hims.Shared.EntityModels
{
using System;
/// <summary>
/// The encounter.
/// </summary>
public class EncounterModel
{
/// <summary>
/// Gets or sets the encounter id.
/// </summary>
public int EncounterId { get; set; }
/// <summary>
/// Gets or sets the encrypted encounter id.
/// </summary>
public string? EncryptedEncounterId { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the appointment id.
/// </summary>
public int AppointmentId { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is admission.
/// </summary>
/// <value>
/// <c>true</c> if this instance is admission; otherwise, <c>false</c>.
/// </value>
public bool IsAdmission { get; set; }
/// <summary>
/// Gets or sets the encounter date.
/// </summary>
public DateTime EncounterDate { get; set; }
/// <summary>
/// Gets or sets the cheif complaints.
/// </summary>
public string? CheifComplaints { get; set; }
/// <summary>
/// Gets or sets the vitals.
/// </summary>
public string? Vitals { get; set; }
/// <summary>
/// Gets or sets the problem list.
/// </summary>
public string? ProblemList { get; set; }
/// <summary>
/// Gets or sets the ros.
/// </summary>
public string? Ros { get; set; }
/// <summary>
/// Gets or sets the heent.
/// </summary>
public string? Heent { get; set; }
/// <summary>
/// Gets or sets the skin.
/// </summary>
public string? Skin { get; set; }
/// <summary>
/// Gets or sets the respiratory.
/// </summary>
public string? Respiratory { get; set; }
/// <summary>
/// Gets or sets the cardiovascular.
/// </summary>
public string? Cardiovascular { get; set; }
/// <summary>
/// Gets or sets the abdomen.
/// </summary>
public string? Abdomen { get; set; }
/// <summary>
/// Gets or sets the extremities.
/// </summary>
public string? Extremities { get; set; }
/// <summary>
/// Gets or sets the ekg.
/// </summary>
public string? EKG { get; set; }
/// <summary>
/// Gets or sets the musculoskeletal.
/// </summary>
public string? Musculoskeletal { get; set; }
/// <summary>
/// Gets or sets the neurology.
/// </summary>
public string? Neurology { get; set; }
/// <summary>
/// Gets or sets the diagnosis.
/// </summary>
public string? Diagnosis { get; set; }
/// <summary>
/// Gets or sets the soap notes.
/// </summary>
public string? SoapNotes { get; set; }
/// <summary>
/// Gets or sets the discharge advice.
/// </summary>
public string? DischargeAdvice { get; set; }
/// <summary>
/// Gets or sets the allergies.
/// </summary>
public string? Allergies { get; set; }
/// <summary>
/// Gets or sets the social history.
/// </summary>
public string? SocialHistory { get; set; }
/// <summary>
/// Gets or sets the radiology.
/// </summary>
public string? Radiology { get; set; }
/// <summary>
/// Gets or sets the hospitalization surgery.
/// </summary>
public string? HospitalizationSurgery { get; set; }
/// <summary>
/// Gets or sets the family medical history.
/// </summary>
public string? FamilyMedicalHistory { get; set; }
/// <summary>
/// Gets or sets the preventive care.
/// </summary>
public string? PreventiveCare { get; set; }
/// <summary>
/// Gets or sets the immunization.
/// </summary>
public string? Immunization { get; set; }
/// <summary>
/// Gets or sets the ic dcodes.
/// </summary>
public string? ICDcodes { get; set; }
/// <summary>
/// Gets or sets the medications.
/// </summary>
public string? Medications { get; set; }
/// <summary>
/// Gets or sets the lab orders.
/// </summary>
public string? LabOrders { get; set; }
/// <summary>
/// Gets or sets the follow up.
/// </summary>
public string? FollowUp { get; set; }
/// <summary>
/// Gets or sets the cp tcodes.
/// </summary>
public string? CPTcodes { get; set; }
/// <summary>
/// Gets or sets the stress test.
/// </summary>
public string? StressTest { get; set; }
/// <summary>
/// Gets or sets the history radiology.
/// </summary>
public string? HistoryRadiology { get; set; }
/// <summary>
/// Gets or sets the hpo.
/// </summary>
public string? HPO { get; set; }
/// <summary>
/// Gets or sets the pastand current medications.
/// </summary>
public string? PastandCurrentMedications { get; set; }
/// <summary>
/// Gets or sets the history laborder.
/// </summary>
public string? HistoryLaborder { get; set; }
/// <summary>
/// Gets or sets the angiogram.
/// </summary>
public string? Angiogram { get; set; }
/// <summary>
/// Gets or sets the handouts.
/// </summary>
public string? Handouts { get; set; }
/// <summary>
/// Gets or sets the records request.
/// </summary>
public string? RecordsRequest { get; set; }
/// <summary>
/// Gets or sets the consultations.
/// </summary>
public string? Consultations { get; set; }
/// <summary>
/// Gets or sets the too.
/// </summary>
public string? TOO { get; set; }
/// <summary>
/// Gets or sets the notes.
/// </summary>
public string? Notes { get; set; }
/// <summary>
/// Gets or sets the symptoms.
/// </summary>
public string? Symptoms { get; set; }
/// <summary>
/// Gets or sets a value indicating whether active.
/// </summary>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
}
}
\ No newline at end of file
namespace Hims.Shared.EntityModels
{
using System;
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The coupon.
/// </summary>
public class EncounterTypeModel
{
/// <summary>
/// Gets or sets the charge types id.
/// </summary>
[Key, Identity]
public int EncounterTypeId { get; set; }
/// <summary>
/// Gets or sets the charge name.
/// </summary>
public string EncounterName { get; set; }
/// <summary>
/// Gets or sets a value indicating whether active.
/// </summary>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime? CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets the total items.
/// </summary>
public int? TotalItems { get; set; }
/// <summary>
/// Gets or Sets the modified By Name.
/// </summary>
public string? ModifiedByName { get; set; }
/// <summary>
/// Gets or sets the Location Id.
/// </summary>
public int? LocationId { get; set; }
}
}
#nullable enable
namespace Hims.Shared.EntityModels
{
using System;
/// <summary>
/// The excel upload history.
/// </summary>
public class ExcelUploadHistoryModel
{
/// <summary>
/// Gets or sets the excel upload history id.
/// </summary>
public int ExcelUploadHistoryId { get; set; }
/// <summary>
/// Gets or sets the uploaded by.
/// </summary>
public int UploadedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets the sheet name.
/// </summary>
public string? SheetName { get; set; }
/// <summary>
/// Gets or sets the sheet name.
/// </summary>
public string? UploadedByName { get; set; }
/// <summary>
/// Gets or sets the type of.
/// </summary>
public string? TypeOf { get; set; }
/// <summary>
/// Gets or sets the added products.
/// </summary>
public string? AddedProducts { get; set; }
/// <summary>
/// Gets or sets the sheet type
/// </summary>
public string? SheetType { get; set; }
/// <summary>
/// Gets or sets the page size.
/// </summary>
public int? PageSize { get; set; }
/// <summary>
/// Gets or sets the page index.
/// </summary>
public int? PageIndex { get; set; }
/// <summary>
/// Gets or sets the total items.
/// </summary>
public int? TotalItems { get; set; }
/// <summary>
/// Gets or sets the product status.
/// </summary>
public string? ProductStatus{get;set;}
/// <summary>
/// Gets or sets the location identifier.
/// </summary>
/// <value>
/// The location identifier.
/// </value>
public int? LocationId { get; set; }
/// <summary>
/// Gets or sets the name of the location.
/// </summary>
/// <value>
/// The name of the location.
/// </value>
public string? LocationName { get; set; }
}
}
namespace Hims.Shared.EntityModels
{
using System;
/// <summary>
/// The auditLog.
/// </summary>
public class ExceptionLogModel
{
/// <summary>
/// Gets or sets the exception log id.
/// </summary>
public int ExceptionLogId { get; set; }
/// <summary>
/// Gets or sets the log date.
/// </summary>
public DateTime LogDate { get; set; }
/// <summary>
/// Gets or sets the log time.
/// </summary>
public TimeSpan LogTime { get; set; }
/// <summary>
/// Gets or sets the log date and time.
/// </summary>
public DateTime LogTimestamp { get; set; }
/// <summary>
/// Gets or sets the log form.
/// </summary>
public string LogFrom { get; set; }
/// <summary>
/// Gets or sets the log route.
/// </summary>
public string LogRoute { get; set; }
/// <summary>
/// Gets or sets the error message.
/// </summary>
public string Message { get; set; }
/// <summary>
/// Gets or sets the description.
/// </summary>
public string Description { get; set; }
/// <summary>
/// Gets or sets the active.
/// </summary>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the total items.
/// </summary>
public int TotalItems { get; set; }
/// <summary>
/// Gets or sets the to date.
/// </summary>
public string? LogPath { get; set; }
/// <summary>
/// Gets or sets the to date.
/// </summary>
public string? LogPathMethod { get; set; }
}
}
\ No newline at end of file
namespace Hims.Shared.EntityModels
{
using System;
/// <summary>
/// The coupon.
/// </summary>
public class FeedbackModel
{
/// <summary>
/// Gets or sets the coupon id.
/// </summary>
public int FeedbackId { get; set; }
/// <summary>
/// Gets or sets the coupon id.
/// </summary>
public int QuestionFeedbackId { get; set; }
/// <summary>
/// Gets or Sets the rating id.
/// </summary>
public string Question { get; set; }
/// <summary>
/// Gets or Sets the rating id.
/// </summary>
public int? RatingId { get; set; }
/// <summary>
/// Gets or Sets the rating status
/// </summary>
public string RatingStatus { get; set; }
/// <summary>
/// Gets or Sets the rating status
/// </summary>
public string FullName { get; set; }
/// <summary>
/// Gets or Sets the patient id.
/// </summary>
public int PatientId { get; set; }
/// <summary>
/// Gets or Sets the mobile.
/// </summary>
public string Mobile { get; set; }
/// <summary>
/// Gets or Sets the mobile.
/// </summary>
public string Comments { get; set; }
/// <summary>
/// Gets or sets the page size.
/// </summary>
public int TotalItems { get; set; }
/// <summary>
/// Gets or Sets the created date
/// </summary>
public string? CreatedDate { get; set; }
/// <summary>
/// Gets or Sets the created date
/// </summary>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
}
}
using System;
namespace Hims.Shared.EntityModels
{
/// <summary>
/// The fetch module templates model.
/// </summary>
public class FetchModuleTemplatesModel
{
/// <summary>
/// Gets or sets the lab template header id.
/// </summary>
public int LabTemplateHeaderId { get; set; }
/// <summary>
/// Gets or sets the template id.
/// </summary>
public string TemplateId { get; set; }
/// <summary>
/// Gets or sets the template name.
/// </summary>
public string TemplateName { get; set; }
}
}
namespace Hims.Shared.EntityModels
{
using System;
/// <summary> The chat.</summary>
public class FinalBillModel
{
/// <summary>Gets or sets the chat id.</summary>
/// <summary>
/// Gets or sets the country id.
/// </summary>
public int FinalBillId { get; set; }
/// <summary>
/// Gets or sets the admission identifier.
/// </summary>
/// <value>
/// The admission identifier.
/// </value>
public int? AdmissionId { get; set; }
/// <summary>
/// Gets or sets the appointment identifier.
/// </summary>
/// <value>
/// The appointment identifier.
/// </value>
public int? AppointmentId { get; set; }
/// <summary>
/// Gets or sets the total amount.
/// </summary>
/// <value>
/// The total amount.
/// </value>
public double TotalAmount { get; set; }
public int? PatientId { get; set; }
/// <summary>
/// Gets or sets the discount details.
/// </summary>
/// <value>
/// The discount details.
/// </value>
public double? DiscountDetails { get; set; }
/// <summary>
/// Gets or sets the final amount.
/// </summary>
/// <value>
/// The final amount.
/// </value>
public double FinalAmount { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
/// <value>
/// The created by.
/// </value>
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
/// <value>
/// The created date.
/// </value>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this <see cref="FinalBill"/> is active.
/// </summary>
/// <value>
/// <c>true</c> if active; otherwise, <c>false</c>.
/// </value>
public bool Active { get; set; }
public double Amount { get; set; }
}
}
namespace Hims.Shared.EntityModels
{
using System;
/// <summary>
/// The coupon.
/// </summary>
public class FloorModel
{
/// <summary>
/// Gets or sets the bed id.
/// </summary>
public int FloorId { get; set; }
/// <summary>
/// Gets or sets the coupon code.
/// </summary>
public string FloorName { get; set; }
/// <summary>
/// Gets or sets a value indicating whether active.
/// </summary>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime? CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets the total items.
/// </summary>
public int? TotalItems { get; set; }
/// <summary>
/// Gets or Sets the Modified By Name.
/// </summary>
public string? CreatedByName { get; set; }
/// <summary>
/// Gets or Sets the Modified By Name.
/// </summary>
public string? ModifiedByName { get; set; }
/// <summary>
/// Gets or sets the login role id.
/// </summary>
public int LoginRoleId { get; set; }
/// <summary>
/// Gets or sets the multiple s location id.
/// </summary>
public string LocationIds { get; set; }
/// <summary>
/// Gets or sets the name of the location.
/// </summary>
/// <value>
/// The name of the location.
/// </value>
public string? LocationNames { get; set; }
/// <summary>
/// Gets or sets the location identifier.
/// </summary>
/// <value>
/// The location identifier.
/// </value>
public int? LocationId { get; set; }
/// <summary>
/// Gets or sets the location identifier.
/// used to check whether user want to update its status or not.
/// </summary>
public Boolean UpdateStatus { get; set; }
}
}
#nullable enable
namespace Hims.Shared.EntityModels
{
using Hims.Shared.Dapper.Attributes;
using System;
/// <summary>
/// The account.
/// </summary>
public class FontTypeModel
{
/// <summary>
/// Gets or sets the font type id.
/// </summary>
public int FontTypeId { get; set; }
/// <summary>
/// Gets or sets the font name.
/// </summary>
public string FontName { get; set; }
/// <summary>
/// Gets or sets a value indicating whether active.
/// </summary>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int? CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
}
}
\ No newline at end of file
using Hims.Shared.Dapper.Attributes;
using Hims.Shared.Library.Enums;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Hims.Shared.EntityModels
{
/// <summary>
/// The anc card generation model.
/// </summary>
public class GYNCardGenerationModel
{
/// <summary>
/// Gets or sets the anc card generation identifier.
/// </summary>
public int? GYNCardGenerationId { get; set; }
public bool IsAdmission { get; set; }
/// <summary>
/// Gets or sets department
/// </summary>
public string? Department { get; set; }
/// <summary>
/// Gets or sets anc no.
/// </summary>
public string? GYNNo { get; set; }
/// <summary>
/// Gets or sets the husband name.
/// </summary>
public string? HusbandName { get; set; }
/// <summary>
/// Gets or sets the remark.
/// </summary>
public string? Remarks { get; set; }
/// <summary>
/// Gets or sets the registration date.
/// </summary>
public string? RegistrationDate { get; set; }
/// <summary>
/// Gets or sets the active.
/// </summary>
public bool? Active { get; set; }
/// <summary>
/// Gets or sets the provider id.
/// </summary>
public int ProviderId { get; set; }
/// <summary>
/// Gets or sets the patient Id.
/// </summary>
public int PatientId { get; set; }
/// <summary>
/// Gets or sets the husband age.
/// </summary>
public int? HusbandAge { get; set; }
/// <summary>
/// Gets or sets anc no exist.
/// </summary>
public string? GYNNoExists { get; set; }
/// <summary>
/// Gets or sets appointment Id.
/// </summary>
public int? AppointmentId { get; set; }
public DateTime? AppointmentDate { get; set; }
public TimeSpan? AppointmentTime { get; set; }
public string? ProviderName { get; set; }
public string? JsonString { get; set; }
/// <summary>
/// Gets or sets the encounter type.
/// </summary>
public GynEncounterType Type { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int ModifiedBy { get; set; }
public int? ObEncounterId { get; set; }
public string? OtherDetails { get; set; }
public string? ConsultantDoctor { get; set; }
}
//public class OrderPrescriptions
//{
// public int? AppointmentId { get; set; }
// public string? OrderPrescription { get; set; }
// public DateTime? AppointmentDate { get; set; }
// public TimeSpan? AppointmentTime { get; set; }
// public string? ProviderName { get; set; }
//}
}
#nullable enable
namespace Hims.Shared.EntityModels
{
using System;
/// <summary> The general advice.</summary>
public class GeneralAdviceModel
{
/// <summary>Gets or sets the general advice id.</summary>
public int GeneralAdviceId { get; set; }
/// <summary>Gets or sets the full name.</summary>
public string? FullName { get; set; }
/// <summary>Gets or sets the description.</summary>
public string? Description { get; set; }
/// <summary>Gets or sets the created by.</summary>
public int CreatedBy { get; set; }
/// <summary>Gets or sets the created date.</summary>
public DateTime CreatedDate { get; set; }
/// <summary>Gets or sets the modified by.</summary>
public int? ModifiedBy { get; set; }
/// <summary>Gets or sets the modified date.</summary>
public DateTime? ModifiedDate { get; set; }
/// <summary>Gets or sets the is general advice assigned.</summary>
public bool? IsAssignedGeneralAdvice { get; set; }
/// <summary>Gets or sets the total items.</summary>
public int? TotalItems { get; set; }
/// <summary>
/// Gets or Sets the appointment id.
/// </summary>
public int AppointmentId { get; set; }
/// <summary>
/// Gets or sets the encrypted appointment id.
/// </summary>
public string EncryptedAppointmentId { get; set; }
}
}
using System;
using System.Collections.Generic;
using System.Text;
namespace Hims.Shared.EntityModels
{
using System;
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
using Shared.Library.Enums;
/// <summary>
/// The encounter.
/// </summary>
public class GeneticSpecialityEncounterModel
{
///<summary>
/// Gets or sets the genetic specialty encounterId
///</summary>
public int? GeneticSpecialityEncounterId { get; set; }
///<summary>
///Gets or sets the appointmentId
///</summary>
public int? AppointmentId { get; set; }
///<summary>
///Gets or sets the active
///</summary>
public Boolean? Active { get; set; }
///<summary>
///Gets or sets the created by
///</summary>
public int CreatedBy { get; set; }
///<summary>
///Gets or sets the created date
///</summary>
public DateTime? CreatedDate { get; set; }
///<summary>
///Gets or sets the modified by
///</summary>
public int? ModifiedBy { get; set; }
///<summary>
///Gets or sets the modified date
///</summary>
public DateTime? ModifiedDate { get; set; }
///<summary>
///Gets or sets the genetic special encounter type
///</summary>
public GeneticSpecialEncounterType Type { get; set; }
///<summary>
///Gets or sets the json string
///</summary>
public string JsonString { get; set; }
///<summary>
///Gets or sets the encrypted appointmentId
///</summary>
public string EncryptedAppointmentId { get; set; }
///<summary>
///Gets or sets the special features page
///</summary>
public string? SpecialFeaturesPage { get; set; }
///<summary>
///Gets or sets the genetic isit
///</summary>
public string? GeneticVisit { get; set; }
///<summary>
///Gets or sets outsideTest
///</summary>
public string? OutsideTest { get; set; }
}
}
\ No newline at end of file
#nullable enable
namespace Hims.Shared.EntityModels
{
using System;
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
/// <summary>
/// The encounter.
/// </summary>
public class GynEncounterModel
{
/// <summary>
/// Gets or sets the gyn encounter id.
/// </summary>
public int GynEncounterId { get; set; }
/// <summary>
/// Gets or sets the appointment id.
/// </summary>
public int? AppointmentId { get; set; }
/// <summary>
/// Gets or sets the admission identifier.
/// </summary>
/// <value>
/// The admission identifier.
/// </value>
public int? AdmissionId { get; set; }
/// <summary>
/// Gets or sets the encounter date.
/// </summary>
public DateTime EncounterDate { get; set; }
/// <summary>
/// Gets or sets the abdomen.
/// </summary>
public string? Abdomen { get; set; }
/// <summary>
/// Gets or sets the additional Labs.
/// </summary>
public string? AdditionalLabs { get; set; }
/// <summary>
/// Gets or sets the birth control.
/// </summary>
public string? BirthControl { get; set; }
/// <summary>
/// Gets or sets the breast.
/// </summary>
public string? Breast { get; set; }
/// <summary>
/// Gets or sets the breast screening.
/// </summary>
public string? BreastScreening { get; set; }
/// <summary>
/// Gets or sets the cancer history.
/// </summary>
public string? CancerHistory { get; set; }
/// <summary>
/// Gets or sets the cardio vascular.
/// </summary>
public string? Cardiovascular { get; set; }
/// <summary>
/// Gets or sets the gynHistory.
/// </summary>
public string? GynHistory { get; set; }
/// <summary>
/// Gets or sets the gynLabs.
/// </summary>
public string? GynLabs { get; set; }
/// <summary>
/// Gets or sets the gynUltraSound.
/// </summary>
public string? GynUltraSound { get; set; }
/// <summary>
/// Gets or sets the heent.
/// </summary>
public string? Heent { get; set; }
/// <summary>
/// Gets or sets the lastBreastUltraSound.
/// </summary>
public string? LastBreastUltraSound { get; set; }
/// <summary>
/// Gets or sets the lastDexaScan.
/// </summary>
public string? LastDexaScan { get; set; }
/// <summary>
/// Gets or sets the lastMammogram.
/// </summary>
public string? LastMammogram { get; set; }
/// <summary>
/// Gets or sets the lastPelvicUltraSound.
/// </summary>
public string? LastPelvicUltraSound { get; set; }
/// <summary>
/// Gets or sets the lymphatic.
/// </summary>
public string? Lymphatic { get; set; }
/// <summary>
/// Gets or sets the menopausal History.
/// </summary>
public string? MenopausalHistory { get; set; }
/// <summary>
/// Gets or sets the Mensutral history.
/// </summary>
public string? MensutralHistory { get; set; }
/// <summary>
/// Gets or sets the musculo skeletal.
/// </summary>
public string? MusculoSkeletal { get; set; }
/// <summary>
/// Gets or sets the patient deferred.
/// </summary>
public string? PatientDeferred { get; set; }
/// <summary>
/// Gets or sets the pelvic.
/// </summary>
public string? Pelvic { get; set; }
/// <summary>
/// Gets or sets the physical exam.
/// </summary>
public string? PhysicalExam { get; set; }
/// <summary>
/// Gets or sets the respiratory.
/// </summary>
public string? Respiratory { get; set; }
/// <summary>
/// Gets or sets the skin.
/// </summary>
public string? Skin { get; set; }
/// <summary>
/// Gets or sets the vitals.
/// </summary>
public string? Vitals { get; set; }
/// <summary>
/// Gets or sets the gynea card.
/// </summary>
public string? GyneacCard { get; set; }
/// <summary>
/// Gets or sets the gynea orders.
/// </summary>
public string? GynaecOrders { get; set; }
/// <summary>
/// Gets or sets the gynae iui.
/// </summary>
public string? GynIUI { get; set; }
/// <summary>
/// Gets or sets the gynae visit.
/// </summary>
public string? GynaecVisit { get; set; }
/// <summary>
/// Gets or sets a value indicating whether active.
/// </summary>
///
/// <summary>
/// Gets or sets the gynea card.
/// </summary>
public string? Procedure { get; set; }
/// <summary>
/// Gets or sets the gynea orders.
/// </summary>
public string? GyneacPartner { get; set; }
/// <summary>
/// Gets or sets the gynae iui.
/// </summary>
public string? ProformaForOasi { get; set; }
/// <summary>
/// Gets or sets the gynea card.
/// </summary>
public string? FamilyHistory { get; set; }
/// <summary>
/// Gets or sets the gynea orders.
/// </summary>
public string? ProblemList { get; set; }
/// <summary>
/// Gets or sets the gynae iui.
/// </summary>
public string? Surgeries { get; set; }
/// <summary>
/// Gets or sets the gynea orders.
/// </summary>
public string? BirthHistory { get; set; }
/// <summary>
/// Gets or sets the gynae iui.
/// </summary>
public string? Allergies { get; set; }
public string? GyneacAdmissionSheet { get; set; }
public string? GyneacDiscargeSummary { get; set; }
public string? GyneacSurgery { get; set; }
public bool Active { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
public string OrderPrescription { get; set; }
public string Colposcopic { get; set; }
public string Ectopic { get; set; }
public string SpeacialFeature { get; set; }
public string ReferralForm { get; set; }
public string Measure { get; set; }
public string RefferalOrder { get; set; }
public string MeasureCommonData { get; set; }
public string ScanAppointmentDetails { get; set; }
public string OutSideTests { get; set; }
public string Reminder { get; set; }
public string GPLA { get; set; }
}
}
\ No newline at end of file
namespace Hims.Shared.EntityModels
{
using System;
using System.Collections.Generic;
using System.Text;
/// <summary>
/// The health card family model.
/// </summary>
public class HealthCardFamilyModel
{
/// <summary>
/// Gets or sets the name of the relation.
/// </summary>
public string Relation { get; set; }
/// <summary>
/// Gets or sets the name of the relation
/// </summary>
public string FullName { get; set; }
/// <summary>
/// Gets or sets the age of the relation
/// </summary>
public int Age { get; set; }
/// <summary>
/// Gets or sets the gender
/// </summary>
public string Gender { get; set; }
}
}
\ No newline at end of file
namespace Hims.Shared.EntityModels
{
using System;
using System.Collections.Generic;
using System.Text;
/// <summary>
/// The health card model.
/// </summary>
public class HealthCardHolderModel
{
/// <summary>
/// Gets or sets the health card identifier.
/// </summary>
/// <value>
/// The health card identifier.
/// </value>
public int HealthCardId { get; set; }
/// <summary>
/// Gets or sets the Issued card id .
/// </summary>
public int IssueHealthCardId { get; set; }
/// <summary>
/// Gets or sets the name of the health card.
/// </summary>
/// <value>
/// The name of the health card.
/// </value>
public string? HealthCardName { get; set; }
/// <summary>
/// Gets or sets the card number.
/// </summary>
/// <value>
/// The card number.
/// </value>
public string CardNumber { get; set; }
/// <summary>
/// Gets or sets the name of the card Holder
/// </summary>
public int PatientId { get; set; }
/// <summary>
/// Gets or sets the name of the card Holder
/// </summary>
public string? PatientName { get; set; }
/// <summary>
/// Gets or sets the mobile.
/// </summary>
public string Mobile { get; set; }
/// <summary>
/// Gets or sets the name of the family members of card Holder
/// </summary>
public string? FamilyMembers { get; set; }
/// <summary>
/// Gets or sets the name of the Pay Type Id
/// </summary>
public int PayTypeId { get; set; }
/// <summary>
/// Gets or sets the name of the pay type transcation number
/// </summary>
public string? PaymentNumber { get; set; }
/// <summary>
/// Gets or sets the name of the Pay Type Name
/// </summary>
public string? PayTypeName { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
/// <value>
/// The created date.
/// </value>
public DateTime? CreatedDate { get; set; }
/// <summary>
/// Gets or sets the created by.s
/// </summary>
/// <value>
/// The created by.
/// </value>
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
/// <value>
/// The created date.
/// </value>
public DateTime? IssuedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
/// <value>
/// The modified by.
/// </value>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
/// <value>
/// The modified date.
/// </value>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets the name of the created by.
/// </summary>
/// <value>
/// The name of the created by.
/// </value>
public string? CreatedByName { get; set; }
/// <summary>
/// Gets or sets the created by role.
/// </summary>
/// <value>
/// The created by role.
/// </value>
public string? CreatedByRole { get; set; }
/// <summary>
/// Gets or sets the name of the modified by.
/// </summary>
/// <value>
/// The name of the modified by.
/// </value>
public string? ModifiedByName { get; set; }
/// <summary>
/// Gets or sets the modified by role.
/// </summary>
/// <value>
/// The modified by role.
/// </value>
public string? ModifiedByRole { get; set; }
/// <summary>
/// Gets or sets the amount.
/// </summary>
/// <value>
/// The amount.
/// </value>
public double NetAmount { get; set; }
/// <summary>
/// Gets or sets the duration.
/// </summary>
/// <value>
/// The modified by.
/// </value>
public int Duration { get; set; }
/// <summary>
/// Gets or sets the Validity Type.
/// </summary>
/// <value>
/// The modified by.
/// </value>
public char ValidityType { get; set; }
/// <summary>
/// Gets or sets the family detail in card.
/// </summary>
public List<HealthCardFamilyModel> FamilyDetails { get; set; }
/// <summary>
/// Gets or sets the dependent patient ids.
/// </summary>
/// <value>
/// The dependent patient ids.
/// </value>
public string DependentPatientIds { get; set; }
/// <summary>
/// Gets or sets the valid till.
/// </summary>
/// <value>
/// The valid till.
/// </value>
public DateTime ValidTill { get; set; }
/// <summary>
/// Gets or sets the from date.
/// </summary>
public string? FromDate { get; set; }
/// <summary>
/// Gets or sets the to date.
/// </summary>
public string? ToDate { get; set; }
}
}
namespace Hims.Shared.EntityModels
{
using Hims.Shared.Dapper.Attributes;
using System;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The health card model.
/// </summary>
public class HealthCardModel
{
/// <summary>
/// Gets or sets the health card id.
/// </summary>
public int HealthCardId { get; set; }
/// <summary>
/// Gets or sets the health card name.
/// </summary>
public string HealthCardName { get; set; }
/// <summary>
/// Gets or sets the amount.
/// </summary>
public double? Amount { get; set; }
/// <summary>
/// Gets or sets the allow members.
/// </summary>
public int AllowMembers { get; set; }
/// <summary>
/// Gets or sets the validity Type.
/// </summary>
public string ValidityType { get; set; }
/// <summary>
/// Gets or sets the duration.
/// </summary>
public int Duration { get; set; }
/// <summary>
/// Gets or sets the active.
/// </summary>
public bool? Active { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets the total items.
/// </summary>
public int? TotalItems { get; set; }
/// <summary>
/// Gets or sets the page index.
/// </summary>
public int? PageIndex { get; set; }
/// <summary>
/// Gets or sets the page size.
/// </summary>
public int? PageSize { get; set; }
/// <summary>
/// Gets or sets the created by name.
/// </summary>
public string CreatedByName { get; set; }
/// <summary>
/// Gets or sets the modified by name.
/// </summary>
public string ModifiedByName { get; set; }
}
}
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>bin\Hims.Shared.EntityModels.xml</DocumentationFile>
<OutputPath>bin\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Hims.Shared.EntityModels.xml</DocumentationFile>
<OutputPath>bin\</OutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.TaskRunnerExplorer.14.0" Version="14.0.0" />
<PackageReference Include="TaskRunner" Version="1.0.0" />
<PackageReference Include="Webpack" Version="4.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Hims.Shared.Dapper\Hims.Shared.Dapper.csproj" />
<ProjectReference Include="..\Hims.Shared.Library\Hims.Shared.Library.csproj" />
</ItemGroup>
</Project>
#nullable enable
namespace Hims.Shared.EntityModels
{
using System;
/// <summary>
/// The homeopathy full transcript model.
/// </summary>
public class HomeopathyFullTranscriptModel
{
/// <summary>
/// Gets or sets the appointment id.
/// </summary>
public int AppointmentId { get; set; }
/// <summary>
/// Gets or sets the appointment no.
/// </summary>
public string AppointmentNo { get; set; }
/// <summary>
/// Gets or sets the patient id.
/// </summary>
public int PatientId { get; set; }
/// <summary>
/// Gets or sets the patient name.
/// </summary>
public string? PatientName { get; set; }
/// <summary>
/// Gets or sets the patient gender.
/// </summary>
public char? PatientGender { get; set; }
/// <summary>
/// Gets or sets the patient mobile.
/// </summary>
public string? PatientMobile { get; set; }
/// <summary>
/// Gets or sets the patient thumbnail url.
/// </summary>
public string? PatientThumbnailUrl { get; set; }
/// <summary>
/// Gets or sets the patient age.
/// </summary>
public short? PatientAge { get; set; }
/// <summary>
/// Gets or sets the patient date of birth.
/// </summary>
public DateTime? PatientDateOfBirth { get; set; }
/// <summary>
/// Gets or sets the patient country code.
/// </summary>
public string? PatientCountryCode { get; set; }
/// <summary>
/// Gets or sets the appointment date.
/// </summary>
public DateTime AppointmentDate { get; set; }
/// <summary>
/// Gets or sets the appointment time.
/// </summary>
public TimeSpan AppointmentTime { get; set; }
/// <summary>
/// Gets or sets the AppointmentTimeString
/// </summary>
public string? AppointmentTimeString { get; set; }
/// <summary>
/// Gets or sets the homeopathy id.
/// </summary>
public long? HomeopathyId { get; set; }
/// <summary>
/// Gets or sets the confidential.
/// </summary>
public string? Confidential { get; set; }
/// <summary>
/// Gets or sets the cc and oc.
/// </summary>
public string? CCAndOC { get; set; }
/// <summary>
/// Gets or sets the additional complaints.
/// </summary>
public string? AdditionalComplaints { get; set; }
/// <summary>
/// Gets or sets the past illness.
/// </summary>
public string? PastIllness { get; set; }
/// <summary>
/// Gets or sets the family illness.
/// </summary>
public string? FamilyIllness { get; set; }
/// <summary>
/// Gets or sets the spouse and children.
/// </summary>
public string? SpouseAndChildren { get; set; }
/// <summary>
/// Gets or sets the personal history.
/// </summary>
public string? PersonalHistory { get; set; }
/// <summary>
/// Gets or sets the personal habits.
/// </summary>
public string? PersonalHabits { get; set; }
/// <summary>
/// Gets or sets the appetite and thirst.
/// </summary>
public string? AppetiteAndThirst { get; set; }
/// <summary>
/// Gets or sets the bowel movements.
/// </summary>
public string? BowelMovements { get; set; }
/// <summary>
/// Gets or sets the urination.
/// </summary>
public string? Urination { get; set; }
/// <summary>
/// Gets or sets the sweat fever chill.
/// </summary>
public string? SweatFeverChill { get; set; }
/// <summary>
/// Gets or sets the chest heart cold cough.
/// </summary>
public string? ChestHeartColdCough { get; set; }
/// <summary>
/// Gets or sets the sexual sphere.
/// </summary>
public string? SexualSphere { get; set; }
/// <summary>
/// Gets or sets the general complaints.
/// </summary>
public string? GeneralComplaints { get; set; }
/// <summary>
/// Gets or sets the affected factors.
/// </summary>
public string? AffectedFactors { get; set; }
/// <summary>
/// Gets or sets the emotional nature.
/// </summary>
public string? EmotionalNature { get; set; }
/// <summary>
/// Gets or sets the sleep and dreams.
/// </summary>
public string? SleepAndDreams { get; set; }
/// <summary>
/// Gets or sets the children.
/// </summary>
public string? Children { get; set; }
/// <summary>
/// Gets or sets the symptoms.
/// </summary>
public string? Symptoms { get; set; }
/// <summary>
/// Gets or sets the provider name.
/// </summary>
public string? ProviderName { get; set; }
}
}
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
namespace Hims.Shared.EntityModels
{
/// <summary>
/// The icons model.
/// </summary>
public class IconsModel
{
/// <summary>
/// Gets or sets the icons id.
/// </summary>
public int IconsId { get; set; }
/// <summary>
/// Gets or sets the icon name.
/// </summary>
public string IconName { get; set; }
/// <summary>
/// Gets or sets a value indicating whether active.
/// </summary>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the url.
/// </summary>
public string Url { get; set; }
/// <summary>
/// Gets or sets the total items.
/// </summary>
public int TotalItems { get; set; }
}
}
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
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