Commit 49daf0f8 authored by Sandeep Sagar Panjala's avatar Sandeep Sagar Panjala

initial commit

parent 27758058
using Hims.Shared.Dapper.Attributes;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Hims.Domain.Entities
{
public class DriverDetail
{
/// <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>
///
/// </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; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
/// <summary>
/// The pharmacyLog.
/// </summary>
public class DynamicReport
{
/// <summary>
/// Gets or sets the dynamicreport id.
/// </summary>
[Key, Identity]
public int DynamicReportId { get; set; }
/// <summary>
/// Gets or sets the AliseName for Query.
/// </summary>
public string Name { get; set; }
/// <summary>
/// Gets or sets the Query.
/// </summary>
public string Data { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
public int? CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
[IgnoreUpdate]
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 status.
/// </summary>
public bool Active { 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.Domain.Entities
{
public class DynamicReportImages
{
/// <summary>
/// Gets or sets the dynamicreport id.
/// </summary>
[Key, Identity]
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; }
}
}
namespace Hims.Domain.Entities
{
using Hims.Shared.Dapper.Attributes;
using System;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The appointment types
/// </summary>
public class DynamicTemplate
{
/// <summary>
/// Gets or sets the dynamic template.
/// </summary>
/// <value>
/// The appointment type.
/// </value>
[Key, Identity]
public int DynamicTemplateId { get; set; }
/// <summary>
/// Gets or sets the name of the template.
/// </summary>
/// <value>
/// The name of the template.
/// </value>
public string TemplateName { get; set; }
/// <summary>
/// Gets or sets the value of the template.
/// </summary>
/// <value>
/// The value.
/// </value>
public string Value { get; set; }
/// <summary>
/// Gets or sets the active.
/// </summary>
/// <value>
/// The active.
/// </value>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
/// <value>
/// The created by.
/// </value>
[IgnoreUpdate]
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
/// <value>
/// The created date.
/// </value>
[IgnoreUpdate]
public DateTime CreatedDate { 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; }
}
}
using Hims.Shared.Dapper.Attributes;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Hims.Domain.Entities
{
/// <summary>
/// The dynamic template config
/// </summary>
public class DynamicTemplateConfig
{
/// <summary>
/// Gets or sets the dynamic template config identifier.
/// </summary>
/// <value>
/// The dynamic template config identifier.
/// </value>
[Key, Identity]
public int DynamicTemplateConfigId { get; set; }
/// <summary>
/// Gets or sets the name of report.
/// </summary>
/// <value>
/// The name of report.
/// </value>
public string ReportName { get; set; }
/// <summary>
/// Gets or sets the dynamic report identifier.
/// </summary>
/// <value>
/// The dynamic report identifier.
/// </value>
public int DynamicReportId { get; set; }
/// <summary>
/// Gets or sets the active.
/// </summary>
/// <value>
/// <c>true</c> if active; otherwise, <c>false</c>.
/// </value>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
/// <value>
/// The created by.
/// </value>
[IgnoreUpdate]
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
/// <value>
/// The created date.
/// </value>
[IgnoreUpdate]
public DateTime CreatedDate { 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; }
}
}
#nullable enable
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
/// <summary>
/// The encounter.
/// </summary>
public class EmergencyEncounter
{
/// <summary>
/// Gets or sets the emergency encounter id.
/// </summary>
[Key, Identity]
public int EmergencyEncounterId { get; set; }
/// <summary>
/// Gets or sets the appointment id.
/// </summary>
[IgnoreUpdate]
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>
[IgnoreUpdate]
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
[IgnoreUpdate]
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.Domain.Entities
{
using Shared.Dapper.Attributes;
using System;
using System.ComponentModel.DataAnnotations;
public class EmployeeShift
{
/// <summary>
/// Gets or sets the employee shift id.
/// </summary>
[Key, Identity]
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 TimeSpan StartTime { get; set; }
/// <summary>
/// Gets or sets the end time.
/// </summary>
public TimeSpan 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>
[IgnoreUpdate]
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; }
}
}
#nullable enable
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
/// <summary>
/// The encounter.
/// </summary>
public class Encounter
{
/// <summary>
/// Gets or sets the encounter id.
/// </summary>
[Key, Identity]
public int EncounterId { get; set; }
/// <summary>
/// Gets or sets the appointment id.
/// </summary>
[IgnoreUpdate]
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>
[IgnoreUpdate]
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 general advice.
/// </summary>
public string? GeneralAdvice { 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>
[IgnoreUpdate]
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
[IgnoreUpdate]
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 current medications.
/// </summary>
public string? CurrentMedications { get; set; }
/// <summary>
/// Gets or sets the medication comment.
/// </summary>
public string? MedicationComment { 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.Domain.Entities
{
public class EncounterOrderTemplates
{
/// <summary>
/// Gets or sets the EncounterOrderTemplates identifier.
/// </summary>
/// <value>
/// The EncounterOrderTemplates identifier.
/// </value>
[Key, Identity]
public int EncounterTemplateId { get; set; }
/// <summary>
/// Gets or sets the EncounterTypeId.
/// </summary>
/// <value>
/// The EncounterTypeId.
/// </value>
public int EncounterTypeId { get; set; }
/// <summary>
/// Gets or sets the TemplateName.
/// </summary>
/// <value>
/// The TemplateName.
/// </value>
public string TemplateName { get; set; }
/// <summary>
/// Gets or sets the Description.
/// </summary>
/// <value>
/// The Description.
/// </value>
public string Description { 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>
[IgnoreUpdate]
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
[IgnoreUpdate]
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; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
/// <summary>
/// The visit type.
/// </summary>
public class EncounterType
{
/// <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>
[IgnoreUpdate]
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
[IgnoreUpdate]
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; }
}
}
using Hims.Shared.Dapper.Attributes;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Hims.Domain.Entities
{
public class EncountersLog
{
/// <summary>
/// Gets or sets the encounter LogId.
/// </summary>
[Key, Identity]
public int EncounterLogId { get; set; }
/// <summary>
/// Gets or sets the encounter type.
/// </summary>
public int EncounterTypeId { get; set; }
/// <summary>
/// Gets or sets the log date.
/// </summary>
[IgnoreUpdate]
public DateTime LogDate { get; set; }
/// <summary>
/// Gets or sets the app type.
/// </summary>
public short LogFrom { get; set; }
/// <summary>
/// Gets or sets the user id.
/// </summary>
public int? AccountId { get; set; }
/// <summary>
/// Gets or sets the encounterLog code.
/// </summary>
public string LogDescription { get; set; }
/// <summary>
/// Gets or sets the Location id.
/// </summary>
public int? LocationId { get; set; }
/// <summary>
/// Gets or sets the Section.
/// </summary>
public string Section { get; set; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The excel upload history.
/// </summary>
public class ExcelUploadHistory
{
/// <summary>
/// Gets or sets the excel upload history id.
/// </summary>
[Key, Identity]
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 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 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; }
}
}
namespace Hims.Domain.Entities
{
using System;
using Shared.Dapper.Attributes;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// the feedback.
/// </summary>
public class Feedback
{
/// <summary>
/// Gets or Sets the feedback id.
/// </summary>
[Key, Identity]
public int FeedbackId { 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 Question { 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 created date
/// </summary>
[IgnoreUpdate]
public DateTime? CreatedDate { get; set; }
}
}
using Hims.Shared.Dapper.Attributes;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Hims.Domain.Entities
{
public class FeedbackDetails
{
// <summary>
/// Gets or sets the coupon id.
/// </summary>
[Key, Identity]
public int Id { get; set; }
/// <summary>
/// Gets or sets the coupon code.
/// </summary>
public int Type { get; set; }
/// <summary>
/// Gets or sets the coupon code.
/// </summary>
///
public string PatientName { get; set; }
/// <summary>
/// Gets or sets the coupon code.
/// </summary>
public string Comments { get; set; }
/// <summary>
/// Gets or sets the coupon code.
/// </summary>
public string MobileNumber { get; set; }
/// <summary>
/// Gets or sets the coupon code.
/// </summary>
public int Rating { get; set; }
/// <summary>
/// Gets or sets a value indicating whether active.
/// </summary>
public bool IsActive { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
[IgnoreUpdate]
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
[IgnoreUpdate]
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; }
}
}
using Hims.Domain.Entities.Enums;
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary> The chat.</summary>
public class FinalBill
{
/// <summary>Gets or sets the chat id.</summary>
/// <summary>
/// Gets or sets the country id.
/// </summary>
[Key, Identity]
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; }
/// <summary>
/// Gets or sets the discount type identifier.
/// </summary>
/// <value>
/// The discount type identifier.
/// </value>
public DiscountType? DiscountTypeId { 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; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
/// <summary>
/// The coupon.
/// </summary>
public class FinalBillInsurance
{
/// <summary>
/// Gets or sets the coupon id.
/// </summary>
[Key, Identity]
public int FinalBillInsuranceId { get; set; }
/// <summary>
/// Gets or sets the coupon code.
/// </summary>
public int FinalBillId { get; set; }
/// <summary>
/// Gets or sets the coupon type.
/// </summary>
public int InsuranceForAdmissionId { get; set; }
/// <summary>
/// Gets or sets the valid from.
/// </summary>
[IgnoreUpdate]
public DateTime ClaimDate { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
[IgnoreUpdate]
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
[IgnoreUpdate]
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? InsuranceClaimStatus { get; set; }
}
}
using Hims.Domain.Entities.Enums;
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary> The chat.</summary>
public class FinalBillServiceOrder
{
/// <summary>
/// Gets or sets the final bill service order identifier.
/// </summary>
/// <value>
/// The final bill service order identifier.
/// </value>
[Key, Identity]
public int FinalBillServiceOrderId { get; set; }
/// <summary>
/// Gets or sets the final bill identifier.
/// </summary>
/// <value>
/// The final bill identifier.
/// </value>
public int FinalBillId { get; set; }
/// <summary>
/// Gets or sets the charge identifier.
/// </summary>
/// <value>
/// The charge identifier.
/// </value>
public int? ChargeId { get; set; }
/// <summary>
/// Gets or sets the product identifier.
/// </summary>
/// <value>
/// The product identifier.
/// </value>
public int? ProductId { get; set; }
/// <summary>
/// Gets or sets the package identifier.
/// </summary>
/// <value>
/// The package identifier.
/// </value>
public int? PackageId { get; set; }
/// <summary>
/// Gets or sets the package identifier.
/// </summary>
/// <value>
/// The package identifier.
/// </value>
public int? PackageModuleId { get; set; }
/// <summary>
/// Gets or sets the product identifier.
/// </summary>
/// <value>
/// The product identifier.
/// </value>
public double? DiscountPercentage { get; set; }
public double? Discount { get; set; }
/// <summary>
/// Gets or sets the unit.
/// </summary>
/// <value>
/// The unit.
/// </value>
public int Unit { get; set; }
/// <summary>
/// Gets or sets the cost.
/// </summary>
/// <value>
/// The cost.
/// </value>
public double Cost { get; set; }
/// <summary>
/// Gets or sets the special provider identifier.
/// </summary>
/// <value>
/// The special provider identifier.
/// </value>
public int? ChargeTypeId { get; set; }
/// <summary>
/// Gets or sets the charge type main identifier.
/// </summary>
/// <value>
/// The charge type main identifier.
/// </value>
public int? ChargeTypeMainId { get; set; }
/// <summary>
/// Gets or sets the notes.
/// </summary>
/// <value>
/// The notes.
/// </value>
public string Notes { get; set; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
/// <summary>
/// The coupon.
/// </summary>
public class Floor
{
/// <summary>
/// Gets or sets the coupon id.
/// </summary>
[Key, Identity]
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>
[IgnoreUpdate]
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
[IgnoreUpdate]
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 LocationId date.
/// </summary>
public int? LocationId { get; set; }
}
}
#nullable enable
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
/// <summary>
/// The font type.
/// </summary>
public class FontType
{
/// <summary>
/// Gets or sets the font type id.
/// </summary>
[Key, Identity]
public int FontTypeId { get; set; }
/// <summary>
/// Gets or sets the font name.
/// </summary>
public string FontName { get; set; }
/// <summary>
/// Gets or sets a value 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>
[IgnoreUpdate]
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; }
}
}
using Hims.Shared.Dapper.Attributes;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Hims.Domain.Entities
{
/// <summary>
/// The anc card generation
/// </summary>
public class GYNCardGeneration
{
/// <summary>
/// Gets or sets the anc card generation identifier.
/// </summary>
[Key, Identity]
public int GYNCardGenerationId { 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 the registration date.
/// </summary>
public string? OtherDetails { get; set; }
public string ConsultantDoctor { get; set; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary> The chat.</summary>
public class GatePass
{
/// <summary>
/// Gets or sets the discharge identifier.
/// </summary>
/// <value>
/// The discharge identifier.
/// </value>
[Key, Identity]
public int GatePassId { 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 admission identifier.
/// </summary>
/// <value>
/// The admission identifier.
/// </value>
public string Remark { get; set; }
/// <summary>
/// Gets or sets the discharge date.
/// </summary>
/// <value>
/// The discharge date.
/// </value>
public DateTime ValidUpto { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
/// <value>
/// The created by.
/// </value>
[IgnoreUpdate]
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
/// <value>
/// The created date.
/// </value>
[IgnoreUpdate]
public DateTime CreatedDate { 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 gate pass Type Id.
/// </summary>
/// <value>
/// The modified by.
/// </value>
public int TypeId { get; set; }
}
}
#nullable enable
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary> The general advice.</summary>
public class GeneralAdvice
{
/// <summary>Gets or sets the general advice id.</summary>
/// <summary>
/// Gets or sets the general advice id.
/// </summary>
[Key, Identity]
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>
[IgnoreUpdate]
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; }
}
}
using Hims.Shared.Dapper.Attributes;
using System;
using System.ComponentModel.DataAnnotations;
namespace Hims.Domain.Entities
{
/// <summary>
/// The general notification model.
/// </summary>
public class GeneralNotification
{
/// <summary>
/// Gets or sets the general notification identifier.
/// </summary>
/// <value>
/// The general notification identifier.
/// </value>
[Key,Identity]
public long GeneralNotificationId { get; set; }
/// <summary>
/// Gets or sets the message.
/// </summary>
/// <value>
/// The message.
/// </value>
public string Message { 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 instance is priority.
/// </summary>
/// <value>
/// <c>true</c> if this instance is priority; otherwise, <c>false</c>.
/// </value>
public bool IsPriority { 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 modules master identifier.
/// </summary>
/// <value>
/// The modules master identifier.
/// </value>
public int ModulesMasterId { get; set; }
/// <summary>
/// Gets or sets the redirect URL.
/// </summary>
/// <value>
/// The redirect URL.
/// </value>
public string RedirectUrl { get; set; }
/// <summary>
/// Gets or sets for roles.
/// </summary>
/// <value>
/// For roles.
/// </value>
public string ForRoles { get; set; }
/// <summary>
/// Gets or sets for accounts.
/// </summary>
/// <value>
/// For accounts.
/// </value>
public string ForAccounts { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is read.
/// </summary>
/// <value>
/// <c>true</c> if this instance is read; otherwise, <c>false</c>.
/// </value>
public bool IsRead { get; set; }
/// <summary>
/// Gets or sets the web notification log type identifier.
/// </summary>
/// <value>
/// The web notification log type identifier.
/// </value>
public int WebNotificationLogTypeId { get; set; }
/// <summary>
/// Gets or sets the reference identifier.
/// </summary>
/// <value>
/// The reference identifier.
/// </value>
public long? ReferenceId { get; set; }
}
}
using System;
using System.Collections.Generic;
using System.Text;
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Library.Enums;
using Shared.Dapper.Attributes;
/// <summary>
/// The encounter.
/// </summary>
public class GeneticSpecialityEncounter
{
///<summary>
/// Gets or sets the genetic specialty encounterId
///</summary>
[Key, Identity]
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 CreatedDate
///</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 special features page
///</summary>
public string SpecialFeaturesPage { get; set; }
///<summary>
///Gets or sets geneticvisit
///</summary>
public string GeneticVisit { get; set; }
///<summary>
///Gets or sets outsideTest
///</summary>
public string OutsideTest { get; set; }
}
}
#nullable enable
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
/// <summary>
/// The encounter.
/// </summary>
public class GynEncounter
{
/// <summary>
/// Gets or sets the gyn encounter id.
/// </summary>
[Key, Identity]
public int GynEncounterId { get; set; }
/// <summary>
/// Gets or sets the appointment id.
/// </summary>
[IgnoreUpdate]
public int? AppointmentId { get; set; }
/// <summary>
/// Get or sets patient Id
/// </summary>
public int? PatientId { 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>
[IgnoreUpdate]
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 gyneac card.
/// </summary>
public string? GyneacCard { get; set; }
/// <summary>
/// Gets or sets the gyneac orders.
/// </summary>
public string? GynaecOrders { get; set; }
/// <summary>
/// Gets or sets the gyuniui.
/// </summary>
public string? GynIUI { get; set; }
/// <summary>
/// Gets or sets the gynaecVisit.
/// </summary>
public string? GynaecVisit { get; set; }
/// <summary>
/// Gets or sets the procedure.
/// </summary>
public string? Procedure{ get; set; }
/// <summary>
/// Gets or sets the gyneac partner
/// </summary>
public string? GyneacPartner { get; set; }
/// <summary>
/// Gets or sets the gynaecVisit.
/// </summary>
public string? ProformaForOasi { get; set; }
/// <summary>
/// Gets or sets the gynaecVisit.
/// </summary>
public string? FamilyHistory { get; set; }
/// <summary>
/// The gynaecvisit.
/// </summary>
/// <summary>
/// Gets or sets the gynaecVisit.
/// </summary>
public string? ProblemList { get; set; }
/// <summary>
/// The gynaecvisit.
/// </summary>
/// <summary>
/// Gets or sets the gynaecVisit.
/// </summary>
public string? Surgeries { get; set; }
/// <summary>
/// The gynaecvisit.
public string? BirthHistory { get; set; }
public string? Allergies { get; set; }
public string? OrderPrescription { 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>
[IgnoreUpdate]
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
[IgnoreUpdate]
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? GyneacAdmissionSheet { get; set; }
public string? GyneacSurgery { get; set; }
public string? GyneacDiscargeSummary { get; set; }
public string? Colposcopic { get; set; }
public string? Ectopic { get; set; }
public string? SpeacialFeature { get; set; }
/// <summary>
/// Get or sets referral form
/// </summary>
public string? ReferralForm { get; set; }
/// <summary>
public string? Measure { get; set; }
public string? RefferalOrder { get; set; }
// <summary>
/// Get or sets measure common data
/// </summary>
public string? MeasureCommonData { get; set; }
public string? ScanAppointmentDetails { get; set; }
public string? OutSideTests { get; set; }
// <summary>
/// Get or sets measure common data
/// </summary>
public string? Reminder { get; set; }
}
}
\ No newline at end of file
namespace Hims.Domain.Entities
{
using Hims.Shared.Dapper.Attributes;
using System;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The HWC Patients
/// </summary>
#pragma warning disable S101 // Types should be named in PascalCase
public class HWCPatient
#pragma warning restore S101 // Types should be named in PascalCase
{
/// <summary>
/// Gets or sets the HWC patient identifier.
/// </summary>
/// <value>
/// The HWC patient identifier.
/// </value>
[Key, Identity]
public int HWCPatientId { get; set; }
/// <summary>
/// Gets or sets the name of the HWC.
/// </summary>
/// <value>
/// The name of the HWC.
/// </value>
public string HWCName { get; set; }
/// <summary>
/// Gets or sets the description.
/// </summary>
/// <value>
/// The description.
/// </value>
public string Description { get; set; }
/// <summary>
/// Gets or sets the location identifier.
/// </summary>
/// <value>
/// The location identifier.
/// </value>
public int LocationId { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this <see cref="HWCPatient"/> is active.
/// </summary>
/// <value>
/// <c>true</c> if active; otherwise, <c>false</c>.
/// </value>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
/// <value>
/// The created by.
/// </value>
[IgnoreUpdate]
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
/// <value>
/// The created date.
/// </value>
[IgnoreUpdate]
public DateTime CreatedDate { 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 color of the row.
/// </summary>
/// <value>
/// The color of the row.
/// </value>
public string RowColor { get; set; }
}
}
#nullable enable
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
/// <summary>
/// The health card.
/// </summary>
public class HealthCard
{
/// <summary>
/// Gets or sets the health card id.
/// </summary>
[Key, Identity]
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>
[IgnoreUpdate]
public int CreatedBy { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
[IgnoreUpdate]
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; }
}
}
#nullable enable
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
/// <summary>
/// The appointment.
/// </summary>
public class HealthCardMember
{
/// <summary>
/// Gets or sets the health card member id.
/// </summary>
[Key, Identity]
public int HealthCardMemberId { get; set; }
/// <summary>
/// Gets or sets the issue health card id.
/// </summary>
public int IssueHealthCardId { get; set; }
/// <summary>
/// Gets or sets the dependent patient id.
/// </summary>
public int DependentPatientId { get; set; }
}
}
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<LangVersion>8.0</LangVersion>
</PropertyGroup>
<ItemGroup>
<None Remove="Hims.Domain.Entities.csproj.DotSettings" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\.editorconfig" Link=".editorconfig" />
</ItemGroup>
<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="..\..\Shared\Hims.Shared.Dapper\Hims.Shared.Dapper.csproj" />
<ProjectReference Include="..\..\Shared\Hims.Shared.Library\Hims.Shared.Library.csproj" />
</ItemGroup>
</Project>
#nullable enable
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary> The homeopathy.</summary>
public class Homeopathy
{
/// <summary>Gets or sets the homeopathy id.</summary>
[Key, Identity]
public int HomeopathyId { get; set; }
/// <summary>Gets or sets the appointment id.</summary>
public int AppointmentId { get; set; }
/// <summary>Gets or sets the homeopathy date.</summary>
public DateTime HomeopathyDate { 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 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; }
}
}
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