Commit 8aaa646c authored by Sandeep Sagar Panjala's avatar Sandeep Sagar Panjala

initial commit

parent 0d635499
namespace Hims.Domain.Entities
{
using Hims.Shared.Dapper.Attributes;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The patient lab detail.
/// </summary>
public class PatientLabDetail
{
/// <summary>
/// Gets or sets the patient lab detail identifier.
/// </summary>
/// <value>
/// The patient lab detail identifier.
/// </value>
[Key, Identity]
public int PatientLabDetailId { get; set; }
/// <summary>
/// Gets or sets the patient lab header identifier.
/// </summary>
/// <value>
/// The patient lab header identifier.
/// </value>
public int PatientLabHeaderId { get; set; }
/// <summary>
/// Gets or sets the lab main detail identifier.
/// </summary>
/// <value>
/// The lab main detail identifier.
/// </value>
public int LabMainDetailId { get; set; }
}
}
namespace Hims.Domain.Entities
{
using Hims.Shared.Dapper.Attributes;
using System;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The patient lab header.
/// </summary>
public class PatientLabHeader
{
/// <summary>
/// Gets or sets the patient lab header identifier.
/// </summary>
/// <value>
/// The patient lab header identifier.
/// </value>
[Key,Identity]
public int PatientLabHeaderId { 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 created by.
/// </summary>
/// <value>
/// The created by.
/// </value>
public int CreatedBy { 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 created date.
/// </summary>
/// <value>
/// The created date.
/// </value>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
/// <value>
/// The modified date.
/// </value>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this <see cref="PatientLabHeader"/> is active.
/// </summary>
/// <value>
/// <c>true</c> if active; otherwise, <c>false</c>.
/// </value>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the admission identifier.
/// </summary>
/// <value>
/// The admission identifier.
/// </value>
public int? AdmissionId { get; set; }
}
}
namespace Hims.Domain.Entities
{
using Hims.Shared.Dapper.Attributes;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The patient medication detail.
/// </summary>
public class PatientMedicationDetail
{
/// <summary>
/// Gets or sets the patient medication detail identifier.
/// </summary>
/// <value>
/// The patient medication detail identifier.
/// </value>
[Key, Identity]
public int PatientMedicationDetailId { get; set; }
/// <summary>
/// Gets or sets the patient medication header identifier.
/// </summary>
/// <value>
/// The patient medication header identifier.
/// </value>
public int PatientMedicationHeaderId { get; set; }
/// <summary>
/// Gets or sets the pharmacy product identifier.
/// </summary>
/// <value>
/// The pharmacy product identifier.
/// </value>
public int PharmacyProductId { get; set; }
/// <summary>
/// Gets or sets the duration.
/// </summary>
/// <value>
/// The duration.
/// </value>
public int Duration { get; set; }
/// <summary>
/// Gets or sets the dosage.
/// </summary>
/// <value>
/// The dosage.
/// </value>
public int Dosage { get; set; }
/// <summary>
/// Gets or sets the type of the duration.
/// </summary>
/// <value>
/// The type of the duration.
/// </value>
public string DurationType { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is morning.
/// </summary>
/// <value>
/// <c>true</c> if this instance is morning; otherwise, <c>false</c>.
/// </value>
public bool IsMorning { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is afternoon.
/// </summary>
/// <value>
/// <c>true</c> if this instance is afternoon; otherwise, <c>false</c>.
/// </value>
public bool IsAfternoon { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is night.
/// </summary>
/// <value>
/// <c>true</c> if this instance is night; otherwise, <c>false</c>.
/// </value>
public bool IsNight { get; set; }
/// <summary>
/// Gets or sets the morning dosage.
/// </summary>
/// <value>
/// The morning dosage.
/// </value>
public string MorningDosage { get; set; }
/// <summary>
/// Gets or sets the afternoon dosage.
/// </summary>
/// <value>
/// The afternoon dosage.
/// </value>
public string AfternoonDosage { get; set; }
/// <summary>
/// Gets or sets the night dosage.
/// </summary>
/// <value>
/// The night dosage.
/// </value>
public string NightDosage { get; set; }
/// <summary>
/// Gets or sets the instruction.
/// </summary>
/// <value>
/// The instruction.
/// </value>
public string Instruction { get; set; }
/// <summary>
/// Gets or sets the route.
/// </summary>
/// <value>
/// The route.
/// </value>
public string Route { get; set; }
/// <summary>
/// Gets or sets the remark.
/// </summary>
/// <value>
/// The route.
/// </value>
public string Remark { get; set; }
}
}
namespace Hims.Domain.Entities
{
using Hims.Shared.Dapper.Attributes;
using System;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The patient medication header.
/// </summary>
public class PatientMedicationHeader
{
/// <summary>
/// Gets or sets the patient medication header identifier.
/// </summary>
/// <value>
/// The patient medication header identifier.
/// </value>
[Key, Identity]
public int PatientMedicationHeaderId { 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 created by.
/// </summary>
/// <value>
/// The created by.
/// </value>
public int CreatedBy { 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 created date.
/// </summary>
/// <value>
/// The created date.
/// </value>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
/// <value>
/// The modified date.
/// </value>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this <see cref="PatientMedicationHeader"/> is active.
/// </summary>
/// <value>
/// <c>true</c> if active; otherwise, <c>false</c>.
/// </value>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the type of the encounter.
/// </summary>
/// <value>
/// The type of the encounter.
/// </value>
public string EncounterType { get; set; }
/// <summary>
/// Gets or sets the appointment identifier.
/// </summary>
/// <value>
/// The appointment identifier.
/// </value>
public int? AdmissionId { get; set; }
}
}
namespace Hims.Domain.Entities
{
using Hims.Shared.Dapper.Attributes;
using System;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The patient registration charge.
/// </summary>
public class PatientRegistrationCharge
{
/// <summary>
/// Gets or sets the patient registration charge identifier.
/// </summary>
/// <value>
/// The patient registration charge identifier.
/// </value>
[Key, Identity]
public int PatientRegistrationChargeId { 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 charge.
/// </summary>
/// <value>
/// The charge.
/// </value>
public double Charge { 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 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 a value indicating whether this <see cref="PatientRegistrationCharge"/> is active.
/// </summary>
/// <value>
/// <c>true</c> if active; otherwise, <c>false</c>.
/// </value>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the name.
/// </summary>
public string Name { get; set; }
/// <summary>
/// Gets or sets the charge category id.
/// </summary>
public int ChargeCategoryId { get; set; }
/// <summary>
/// Gets or sets the charge category id.
/// </summary>
public int ModulesMasterId { 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 patient registration detail.
/// </summary>
public class PatientRegistrationDetail
{
/// <summary>
/// Gets or sets the patient registration detail identifier.
/// </summary>
/// <value>
/// The patient registration detail identifier.
/// </value>
[Key, Identity]
public int PatientRegistrationDetailId { get; set; }
/// <summary>
/// Gets or sets the patient registration charge identifier.
/// </summary>
/// <value>
/// The patient registration charge identifier.
/// </value>
public double Charge { get; set; }
/// <summary>
/// Gets or sets the patient identifier.
/// </summary>
/// <value>
/// The patient identifier.
/// </value>
public int PatientId { 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 the type of the pay.
/// </summary>
/// <value>
/// The type of the pay.
/// </value>
public int PayTypeId { get; set; }
}
}
#nullable enable
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
/// <summary>
/// The account.
/// </summary>
public class PatientTiming
{
/// <summary>
/// Gets or sets the account id.
/// </summary>
[Key, Identity]
public int PatientTimingId { get; set; }
/// <summary>
/// Gets or sets the patient identifier.
/// </summary>
/// <value>
/// The patient identifier.
/// </value>
public int PatientId { get; set; }
/// <summary>
/// Gets or sets the breakfast.
/// </summary>
/// <value>
/// The breakfast.
/// </value>
public TimeSpan? Breakfast { get; set; }
/// <summary>
/// Gets or sets the lunch.
/// </summary>
/// <value>
/// The lunch.
/// </value>
public TimeSpan? Lunch { get; set; }
/// <summary>
/// Gets or sets the dinner.
/// </summary>
/// <value>
/// The dinner.
/// </value>
public TimeSpan? Dinner { 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 PatientTransaction
{
/// <summary>
/// Gets or sets the practice id.
/// </summary>
[Key, Identity]
public int PatientTransactionId { get; set;}
public int PatientId { get; set; }
public DateTime TransactionDate { get; set;}
public string TransactionId { get; set; }
public bool Active { get; set; }
public int PaymentModeId { get; set; }
public int? RefundId { get; set; }
public int? PaymentStatusId { get; set; }
public decimal SettledAmount { get; set;}
public decimal Amount { get; set; }
public DateTime SettledDate { get; set; }
public int Percentage { get; set; }
public string TransactionType { get; set; }
public int LocationId { get; set; }
public int? CreatedBy { get; set; }
public DateTime CreatedDate { get; set; }
public int? ModifiedBy { get; set; }
public DateTime ModifiedDate { get; set; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The user excel history.
/// </summary>
public class PatientExcelHistory
{
/// <summary>
/// Gets or sets the excel upload history id.
/// </summary>
[Key, Identity]
public int PatientExcelHistoryId { 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 location identifier.
/// </summary>
public int? LocationId { get; set; }
/// <summary>
/// Gets or sets the added users.
/// </summary>
public string AddedPatients { get; set; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The payment status.
/// </summary>
public class PayCategory
{
/// <summary>
/// Gets or sets the pay category id.
/// </summary>
[Key, Identity]
public int PayCategoryId { get; set; }
/// <summary>
/// Gets or sets the name.
/// </summary>
public string PayCategoryName { 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.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The payment status.
/// </summary>
public class PayType
{
/// <summary>
/// Gets or sets the payment status id.
/// </summary>
[Key, Identity]
public int PayTypeId { get; set; }
/// <summary>
/// Gets or sets the status.
/// </summary>
public string PayTypeName { get; set; }
/// <summary>
/// Gets or sets the status.
/// </summary>
public string Description { get; set; }
/// <summary>
/// Gets or sets a value indicating whether active.
/// </summary>
public bool IsActive { get; set; }
/// <summary>
/// Gets or sets the status.
/// </summary>
public string PayTypeValue { get; set; }
/// <summary>
/// Gets or sets the status of Salucro.
/// </summary>
public bool SalucroPayType { get; set; }
}
}
#nullable enable
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
/// <summary>
/// The patient document.
/// </summary>
public class PaymentDocument
{
/// <summary>
/// Gets or sets the patient document id.
/// </summary>
[Key, Identity]
public int PaymentDocumentId { get; set; }
/// <summary>
/// Gets or sets the patient id.
/// </summary>
[IgnoreUpdate]
public int ProviderId { get; set; }
/// <summary>
/// Gets or sets the uploaded by id.
/// </summary>
[IgnoreUpdate]
public int UploadedBy { get; set; }
/// <summary>
/// Gets or sets the document name.
/// </summary>
public string DocumentName { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the document type.
/// </summary>
public string DocumentType { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the content type.
/// </summary>
public string ContentType { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the size.
/// </summary>
public float Size { get; set; }
/// <summary>
/// Gets or sets the description.
/// </summary>
public string? Description { get; set; }
/// <summary>
/// Gets or sets the document url.
/// </summary>
public string DocumentUrl { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the thumbnail url.
/// </summary>
public string ThumbnailUrl { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the uploaded date.
/// </summary>
public DateTime UploadedDate { get; set; }
/// <summary>
/// Gets or sets a value indicating whether active.
/// </summary>
public bool Active { get; set; }
/// <summary>
/// Gets or sets the month.
/// </summary>
public string? Month { get; set; }
/// <summary>
/// Gets or sets the year.
/// </summary>
public string? Year { 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 Payment Initiation Log.
/// </summary>
public class PaymentInitiationLog
{
/// <summary>
/// Gets or sets the Payment Initiation Log id.
/// </summary>
[Key, Identity]
public int PaymentInitiationLogId { get; set; }
/// <summary>
/// Gets or sets the table data.
/// </summary>
public string TableData { get; set; }
/// <summary>
/// Gets or sets the table data.
/// </summary>
public string Mode { get; set; }
/// <summary>
/// Gets or sets the payment module id.
/// </summary>
public int PaymentModuleId { 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; }
}
}
using Hims.Shared.Dapper.Attributes;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Hims.Domain.Entities
{
public class PaymentMapHelper
{
/// <summary>
/// Gets or sets the payment map helper identifier.
/// </summary>
/// <value>
/// The payment map helper identifier.
/// </value>
[Key, Identity]
public int PaymentMapHelperId { get; set; }
/// <summary>
/// Gets or sets the Payment Initiation Log id.
/// </summary>
public int PaymentInitiationLogId { get; set; }
/// <summary>
/// Gets or sets the bill identifier.
/// </summary>
/// <value>
/// The bill identifier.
/// </value>
public int BillId { get; set; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
/// <summary>
/// The Payment Initiation Log.
/// </summary>
public class PaymentResponseLog
{
/// <summary>
/// Gets or sets the Payment Initiation Log id.
/// </summary>
[Key, Identity]
public int PaymentResponseLogId { get; set; }
/// <summary>
/// Gets or sets the json data.
/// </summary>
public string JsonData { get; set; }
/// <summary>
/// Gets or sets the is success.
/// </summary>
public bool IsSuccess { get; set; }
/// <summary>
/// Gets or sets the exception.
/// </summary>
public string Exception { get; set; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
[IgnoreUpdate]
public DateTime CreatedDate { get; set; }
}
}
namespace Hims.Domain.Entities
{
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The payment status.
/// </summary>
public class PaymentStatus
{
/// <summary>
/// Gets or sets the payment status id.
/// </summary>
[Key, Identity]
public int PaymentStatusId { get; set; }
/// <summary>
/// Gets or sets the status.
/// </summary>
public string Status { 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.Domain.Entities
{
public class PediatricEncounter
{
/// <summary>
/// Gets or Sets the pediatric Encounter
/// </summary>
[Key, Identity]
public int PediatricEncounterId { 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 pediatric encounter date
/// </summary>
public DateTime PediatricEncounterDate { 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 admission id
/// </summary>
public int? AdmissionId { get; set; }
/// <summary>
/// Gets or Sets Measurements
/// </summary>
public string Measurements { get; set; }
/// <summary>
/// Gets or Sets NeonatalRisk.
/// </summary>
public string NeonatalRisk { get; set; }
/// <summary>
/// Gets or Sets PediatricRisk.
/// </summary>
public string PediatricRisk { get; set; }
/// <summary>
/// Gets or Sets Syndrome.
/// </summary>
public string Syndrome { get; set; }
/// <summary>
/// Gets or Sets Syndrome.
/// </summary>
///
public string ClinicalExamination { get; set; }
/// <summary>
/// Gets or Sets Syndrome.
/// </summary>
public string DownSyndromeFollowUp { get; set; }
/// <summary>
/// Gets or Sets High Risk Intial.
/// </summary>
public string HighRiskIntial { get; set; }
/// <summary>
/// Gets or Sets Pediatric Guide.
/// </summary>
public string PediatricGuide { get; set; }
/// <summary>
/// Gets or Sets Order Prescription.
/// </summary>
public string OrderPrescription { get; set; }
/// <summary>
/// Gets or Sets Order Allergies.
/// </summary>
public string Allergies { get; set; }
/// <summary>
/// Gets or Sets ReferalOrder.
/// </summary>
public string RefferalOrder { get; set; }
/// <summary>
/// Gets or sets the vaccine detail.
/// </summary>
/// <value>
/// The vaccine detail.
/// </value>
public string VaccineDetail { get; set; }
/// <summary>
/// Gets or Sets MChat
/// </summary>
public string MChat { get; set; }
/// <summary>
/// Gets or Sets Special Features
/// </summary>
public string SpecialFeatures { get; set; }
/// <summary>
/// Gets or sets the diagnosis order.
/// </summary>
/// <value>
/// The diagnosis order.
/// </value>
public string DiagnosisOrder { get; set; }
/// <summary>
/// Gets or sets thenext visit order.
/// </summary>
/// <value>
/// The next visit order.
/// </value>
public string NextVisitOrder { get; set; }
/// <summary>
/// Gets or sets measure common data.
/// </summary>
/// <value>
/// The Measure Common Data.
/// </value>
public string MeasureCommonData { get; set; }
/// <summary>
/// Gets or sets ReminderForm.
/// </summary>
/// <value>
/// The ReminderForm.
/// </value>
public string Reminder { get; set; }
}
}
namespace Hims.Domain.Entities
{
using Hims.Shared.Dapper.Attributes;
using System;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The pharmacy department
/// </summary>
public class PharmacyDepartment
{
/// <summary>
/// Gets or sets the pharmacy department identifier.
/// </summary>
/// <value>
/// The pharmacy department identifier.
/// </value>
[Key, Identity]
public int PharmacyDepartmentId { get; set; }
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>
/// The name.
/// </value>
public string Name { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this <see cref="PharmacyDepartment"/> is active.
/// </summary>
/// <value>
/// <c>true</c> if active; otherwise, <c>false</c>.
/// </value>
public bool Active { 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 created by.
/// </summary>
/// <value>
/// The created by.
/// </value>
public int CreatedBy { 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 created date.
/// </summary>
/// <value>
/// The created date.
/// </value>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
/// <value>
/// The modified date.
/// </value>
public DateTime? ModifiedDate { get; set; }
}
}
namespace Hims.Domain.Entities
{
using Hims.Shared.Dapper.Attributes;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The pharmacy department user.
/// </summary>
public class PharmacyDepartmentUser
{
/// <summary>
/// Gets or sets the pharmacy department user identifier.
/// </summary>
/// <value>
/// The pharmacy department user identifier.
/// </value>
[Key,Identity]
public int PharmacyDepartmentUserId { get; set; }
/// <summary>
/// Gets or sets the pharmacy department identifier.
/// </summary>
/// <value>
/// The pharmacy department identifier.
/// </value>
public int PharmacyDepartmentId { get; set; }
/// <summary>
/// Gets or sets the account identifier.
/// </summary>
/// <value>
/// The account identifier.
/// </value>
public int AccountId { get; set; }
}
}
namespace Hims.Domain.Entities
{
using Hims.Shared.Dapper.Attributes;
using System;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The pharmacy departmental stock.
/// </summary>
public class PharmacyDepartmentalStock
{
/// <summary>
/// Gets or sets the pharmacy departmental stock identifier.
/// </summary>
/// <value>
/// The pharmacy departmental stock identifier.
/// </value>
[Key,Identity]
public int PharmacyDepartmentalStockId { get; set; }
/// <summary>
/// Gets or sets the pharmacy product identifier.
/// </summary>
/// <value>
/// The pharmacy product identifier.
/// </value>
public int PharmacyProductId { get; set; }
/// <summary>
/// Gets or sets the pharmacy stock identifier.
/// </summary>
/// <value>
/// The pharmacy stock identifier.
/// </value>
public int? PharmacyStockId { get; set; }
/// <summary>
/// Gets or sets the pharmacy retail stock identifier.
/// </summary>
/// <value>
/// The pharmacy retail stock identifier.
/// </value>
public int? PharmacyRetailStockId { get; set; }
/// <summary>
/// Gets or sets the tax identifier.
/// </summary>
/// <value>
/// The tax identifier.
/// </value>
public int TaxId { get; set; }
/// <summary>
/// Gets or sets the quantity in.
/// </summary>
/// <value>
/// The quantity in.
/// </value>
public int QuantityIn { get; set; }
/// <summary>
/// Gets or sets the quantity out.
/// </summary>
/// <value>
/// The quantity out.
/// </value>
public int QuantityOut { 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 modified by.
/// </summary>
/// <value>
/// The modified by.
/// </value>
public int? ModifiedBy { get; set; }
/// <summary>
/// Gets or sets the pharmacy department identifier.
/// </summary>
/// <value>
/// The pharmacy department identifier.
/// </value>
public int? PharmacyDepartmentId { get; set; }
/// <summary>
/// Gets or sets the batch number.
/// </summary>
/// <value>
/// The batch number.
/// </value>
public string BatchNumber { get; set; }
/// <summary>
/// Gets or sets the barcode.
/// </summary>
/// <value>
/// The barcode.
/// </value>
public string Barcode { get; set; }
/// <summary>
/// Gets or sets the expiry date.
/// </summary>
/// <value>
/// The expiry date.
/// </value>
public DateTime? ExpiryDate { 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 modified date.
/// </summary>
/// <value>
/// The modified date.
/// </value>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets the purchase rate.
/// </summary>
/// <value>
/// The purchase rate.
/// </value>
public double PurchaseRate { get; set; }
/// <summary>
/// Gets or sets the MRP.
/// </summary>
/// <value>
/// The MRP.
/// </value>
public double Mrp { get; set; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The pharmacy indent detail.
/// </summary>
public class PharmacyIndentDetail
{
/// <summary>
/// Gets or sets the pharmacy indent detail id.
/// </summary>
[Key, Identity]
public int PharmacyIndentDetailId { get; set; }
/// <summary>
/// Gets or sets the pharmacy indent header id.
/// </summary>
public int PharmacyIndentHeaderId { get; set; }
/// <summary>
/// Gets or sets the pharmacy product id.
/// </summary>
public int? PharmacyProductId { get; set; }
/// <summary>
/// Gets or sets the quantity.
/// </summary>
public int Quantity { get; set; }
/// <summary>
/// Gets or sets the status.
/// </summary>
public string Status { get; set; }
/// <summary>
/// Gets or sets the product name.
/// </summary>
public string ProductName { 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 created date.
/// </summary>
public DateTime? RequestedDate { get; set; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The pharmacy indent header.
/// </summary>
public class PharmacyIndentHeader
{
/// <summary>
/// Gets or sets the pharmacy indent header id.
/// </summary>
[Key, Identity]
public int PharmacyIndentHeaderId { get; set; }
/// <summary>
/// Gets or sets the indent date.
/// </summary>
public DateTime IndentDate { get; set; }
/// <summary>
/// Gets or sets the department id.
/// </summary>
public int? DepartmentId { get; set; }
/// <summary>
/// Gets or sets the required date.
/// </summary>
public DateTime RequiredDate { get; set; }
/// <summary>
/// Gets or sets the reason.
/// </summary>
public string Reason { get; set; }
/// <summary>
/// Gets or sets the status.
/// </summary>
public string Status { get; set; }
/// <summary>
/// Gets or sets the admission id.
/// </summary>
public int AdmissionId { get; set; }
/// <summary>
/// Gets or sets the approved by.
/// </summary>
public int? ApprovedBy { 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 approved date.
/// </summary>
public DateTime? ApprovedDate { 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.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The pharmacy issue detail.
/// </summary>
public class PharmacyIssueDetail
{
/// <summary>
/// Gets or sets the pharmacy issue detail id.
/// </summary>
[Key, Identity]
public int PharmacyIssueDetailId { get; set; }
/// <summary>
/// Gets or sets the pharmacy issue header id.
/// </summary>
public int PharmacyIssueHeaderId { get; set; }
/// <summary>
/// Gets or sets the quantity.
/// </summary>
public int Quantity { get; set; }
/// <summary>
/// Gets or sets the pharmacy product id.
/// </summary>
public int PharmacyProductId { get; set; }
/// <summary>
/// Gets or sets the retail stock id.
/// </summary>
public int RetailStockId { get; set; }
/// <summary>
/// Gets or sets the gst percentage.
/// </summary>
public double GstPercentage { get; set; }
/// <summary>
/// Gets or sets the discount percentage.
/// </summary>
public double? DiscountPercentage { get; set; }
/// <summary>
/// Gets or sets the net amount.
/// </summary>
public double NetAmount { get; set; }
/// <summary>
/// Gets or sets the total.
/// </summary>
public double Total { get; set; }
/// <summary>
/// Gets or sets the gst amount.
/// </summary>
public double GstAmount { get; set; }
/// <summary>
/// Gets or sets the discount amount.
/// </summary>
public double? DiscountAmount { get; set; }
/// <summary>
/// Gets or sets the pharmacy indent detail identifier.
/// </summary>
/// <value>
/// The pharmacy indent detail identifier.
/// </value>
public int? PharmacyIndentDetailId { get; set; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The pharmacy issue header.
/// </summary>
public class PharmacyIssueHeader
{
/// <summary>
/// Gets or sets the pharmacy issue header id.
/// </summary>
[Key, Identity]
public int PharmacyIssueHeaderId { get; set; }
/// <summary>
/// Gets or sets the pharmacy indent header id.
/// </summary>
public int? PharmacyIndentHeaderId { get; set; }
/// <summary>
/// Gets or sets the operation indent header identifier.
/// </summary>
/// <value>
/// The operation indent header identifier.
/// </value>
public int? OperationIndentHeaderId { get; set; }
/// <summary>
/// Gets or sets the overall net amount.
/// </summary>
public double OverallNetAmount { get; set; }
/// <summary>
/// Gets or sets the overall gst.
/// </summary>
public double OverallGst { get; set; }
/// <summary>
/// Gets or sets the overall total.
/// </summary>
public double OverallTotal { get; set; }
/// <summary>
/// Gets or sets the overall discount.
/// </summary>
public double? OverallDiscount { 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; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
/// <summary>
/// The pharmacyLog.
/// </summary>
public class PharmacyLog
{
/// <summary>
/// Gets or sets the pharmacyLog id.
/// </summary>
[Key, Identity]
public int PharmacyLogId { get; set; }
/// <summary>
/// Gets or sets the Log type.
/// </summary>
public int PharmacyLogTypeId { 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 pharmacyLog code.
/// </summary>
public string LogDescription { get; set; }
/// <summary>
/// Gets or sets the Location Id.
/// </summary>
public int? LocationId { get; set; }
}
}
\ No newline at end of file
This diff is collapsed.
namespace Hims.Domain.Entities
{
using Hims.Shared.Dapper.Attributes;
using System;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The pharmacy product detail.
/// </summary>
public class PharmacyProductDetail
{
/// <summary>
/// Gets or sets the pharmacy product detail identifier.
/// </summary>
/// <value>
/// The pharmacy product detail identifier.
/// </value>
[Key, Identity]
public int PharmacyProductDetailId { get; set; }
/// <summary>
/// Gets or sets the pharmacy product rack identifier.
/// </summary>
/// <value>
/// The pharmacy product rack identifier.
/// </value>
public int PharmacyProductRackId { get; set; }
/// <summary>
/// Gets or sets the roq.
/// </summary>
/// <value>
/// The roq.
/// </value>
public int ROQ { get; set; }
/// <summary>
/// Gets or sets the rol.
/// </summary>
/// <value>
/// The rol.
/// </value>
public int ROL { get; set; }
/// <summary>
/// Gets or sets the pharmacy product identifier.
/// </summary>
/// <value>
/// The pharmacy product identifier.
/// </value>
public int PharmacyProductId { get; set; }
/// <summary>
/// Gets or sets the retail pharmacy identifier.
/// </summary>
/// <value>
/// The pharmacy retail stock identifier.
/// </value>
public int? RetailPharmacyId { get; set; }
/// <summary>
/// Gets or sets the pharmacy department identifier.
/// </summary>
/// <value>
/// The pharmacy department identifier.
/// </value>
public int? PharmacyDepartmentId { get; set; }
/// <summary>
/// Gets or sets the pharmacy ware house identifier.
/// </summary>
/// <value>
/// The pharmacy ware house identifier.
/// </value>
public int? PharmacyWareHouseId { 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 modified by.
/// </summary>
/// <value>
/// The modified by.
/// </value>
public int? ModifiedBy { 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 modified date.
/// </summary>
/// <value>
/// The modified date.
/// </value>
public DateTime? ModifiedDate { get; set; }
}
}
namespace Hims.Domain.Entities
{
using Hims.Shared.Dapper.Attributes;
using System;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The pharmacy product rack.
/// </summary>
public class PharmacyProductRack
{
/// <summary>
/// Gets or sets the pharmacy product rack identifier.
/// </summary>
/// <value>
/// The pharmacy product rack identifier.
/// </value>
[Key, Identity]
public int PharmacyProductRackId { get; set; }
/// <summary>
/// Gets or sets the name of the rack.
/// </summary>
/// <value>
/// The name of the rack.
/// </value>
public string RackName { 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 modified by.
/// </summary>
/// <value>
/// The modified by.
/// </value>
public int? ModifiedBy { 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 modified date.
/// </summary>
/// <value>
/// The modified date.
/// </value>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets the retail pharmacy identifier.
/// </summary>
/// <value>
/// The retail pharmacy identifier.
/// </value>
public int? RetailPharmacyId { get; set; }
/// <summary>
/// Gets or sets the pharmacy department identifier.
/// </summary>
/// <value>
/// The pharmacy department identifier.
/// </value>
public int? PharmacyDepartmentId { get; set; }
/// <summary>
/// Gets or sets the pharmacy ware house identifier.
/// </summary>
/// <value>
/// The pharmacy ware house identifier.
/// </value>
public int? PharmacyWareHouseId { get; set; }
}
}
namespace Hims.Domain.Entities
{
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The pharmacy purchase detail.
/// </summary>
public class PharmacyPurchaseDetail
{
/// <summary>
/// Gets or sets the pharmacy purchase detail id.
/// </summary>
[Key, Identity]
public int PharmacyPurchaseDetailId { get; set; }
/// <summary>
/// Gets or sets the pharmacy purchase header id.
/// </summary>
public int PharmacyPurchaseHeaderId { get; set; }
/// <summary>
/// Gets or sets the purchase order detail identifier.
/// </summary>
/// <value>
/// The purchase order detail identifier.
/// </value>
public long? PurchaseOrderDetailId { get; set; }
/// <summary>
/// Gets or sets the serial num.
/// </summary>
public int SerialNum { get; set; }
/// <summary>
/// Gets or sets the pharmacy product id.
/// </summary>
public int PharmacyProductId { get; set; }
/// <summary>
/// Gets or sets the quantity.
/// </summary>
public int Quantity { get; set; }
/// <summary>
/// Gets or sets the free.
/// </summary>
public int Free { get; set; }
/// <summary>
/// Gets or sets the purchase rate.
/// </summary>
public double PurchaseRate { get; set; }
/// <summary>
/// Gets or sets the mrp.
/// </summary>
public double Mrp { get; set; }
/// <summary>
/// Gets or sets the total.
/// </summary>
public double Total { get; set; }
/// <summary>
/// Gets or sets the tax per item.
/// </summary>
public double TaxPerItem { get; set; }
/// <summary>
/// Gets or sets the tax amount.
/// </summary>
public double TaxAmount { get; set; }
/// <summary>
/// Gets or sets the discount per item.
/// </summary>
public double DiscountPerItem { get; set; }
/// <summary>
/// Gets or sets the discount amount.
/// </summary>
public double DiscountAmount { get; set; }
/// <summary>
/// Gets or sets the net amount.
/// </summary>
public double NetAmount { get; set; }
/// <summary>
/// Gets or sets the barcode.
/// </summary>
public string Barcode { get; set; }
/// <summary>
/// Gets or sets the pharmacy stock id.
/// </summary>
public int? PharmacyStockId { get; set; }
/// <summary>
/// Gets or sets the pharmacy retail stock id.
/// </summary>
public int? PharmacyRetailStockId { get; set; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The pharmacy purchase header.
/// </summary>
public class PharmacyPurchaseHeader
{
/// <summary>
/// Gets or sets the pharmacy purchase header id.
/// </summary>
[Key, Identity]
public int PharmacyPurchaseHeaderId { get; set; }
/// <summary>
/// Gets or sets the bill number.
/// </summary>
public string BillNumber { get; set; }
/// <summary>
/// Gets or sets the bill date.
/// </summary>
public DateTime BillDate { get; set; }
/// <summary>
/// Gets or sets the due date.
/// </summary>
public DateTime? DueDate { get; set; }
/// <summary>
/// Gets or sets the bill type.
/// </summary>
public string BillType { get; set; }
/// <summary>
/// Gets or sets the supplier id.
/// </summary>
public int SupplierId { get; set; }
/// <summary>
/// Gets or sets the bill amount.
/// </summary>
public double BillAmount { get; set; }
/// <summary>
/// Gets or sets the discount.
/// </summary>
public double Discount { get; set; }
/// <summary>
/// Gets or sets the taxes.
/// </summary>
public double Taxes { get; set; }
/// <summary>
/// Gets or sets the netamount.
/// </summary>
public double Netamount { 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; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets the auto generate bill number.
/// </summary>
public string AutoGenerateBillNumber { get; set; }
/// <summary>
/// Gets or sets the pharmacy ware house identifier.
/// </summary>
/// <value>
/// The pharmacy ware house identifier.
/// </value>
public int PharmacyWareHouseId { get; set; }
/// <summary>
/// Gets or sets the pay type id.
/// </summary>
public int? PayTypeId { get; set; }
/// <summary>
/// Gets or sets the PaymentNumber.
/// </summary>
public string PaymentNumber { get; set; }
/// <summary>
/// Gets or sets the purchase order header identifier.
/// </summary>
/// <value>
/// The purchase order header identifier.
/// </value>
public long? PurchaseOrderHeaderId { get; set; }
public bool? IsCreditClear { get; set; }
public DateTime? PaidOnDate { get; set; }
}
}
namespace Hims.Domain.Entities
{
using Hims.Shared.Dapper.Attributes;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The pharmacy purchase return detail.
/// </summary>
public class PharmacyPurchaseReturnDetail
{
/// <summary>
/// Gets or sets the pharmacy purchase return detail id.
/// </summary>
[Key, Identity]
public int PharmacyPurchaseReturnDetailId { get; set; }
/// <summary>
/// Gets or sets the pharmacy purchase detail id.
/// </summary>
public int PharmacyPurchaseDetailId { get; set; }
/// <summary>
/// Gets or sets the pharmacy purchase return header id.
/// </summary>
public int PharmacyPurchaseReturnHeaderId { get; set; }
/// <summary>
/// Gets or sets the pharmacy product id.
/// </summary>
public int PharmacyProductId { get; set; }
/// <summary>
/// Gets or sets the return quantity.
/// </summary>
public int ReturnQuantity { get; set; }
/// <summary>
/// Gets or sets the amount.
/// </summary>
public double Amount { get; set; }
/// <summary>
/// Gets or sets the tax percentage.
/// </summary>
public double TaxPercentage { get; set; }
/// <summary>
/// Gets or sets the discount percentage.
/// </summary>
public double? DiscountPercentage { get; set; }
/// <summary>
/// Gets or sets the discount amount.
/// </summary>
public double? DiscountAmount { get; set; }
/// <summary>
/// Gets or sets the net amount.
/// </summary>
public double NetAmount { get; set; }
/// <summary>
/// Gets or sets the pharmacy stock id.
/// </summary>
public int PharmacyStockId { get; set; }
}
}
namespace Hims.Domain.Entities
{
using Hims.Shared.Dapper.Attributes;
using System;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The pharmacy purchase return header.
/// </summary>
public class PharmacyPurchaseReturnHeader
{
/// <summary>
/// Gets or sets the pharmacy purchase return header id.
/// </summary>
[Key, Identity]
public int PharmacyPurchaseReturnHeaderId { get; set; }
/// <summary>
/// Gets or sets the bill number.
/// </summary>
public string BillNumber { get; set; }
/// <summary>
/// Gets or sets the return date.
/// </summary>
public DateTime ReturnDate { get; set; }
/// <summary>
/// Gets or sets the pharmacy purchase header id.
/// </summary>
public int PharmacyPurchaseHeaderId { get; set; }
/// <summary>
/// Gets or sets the overall bill amount.
/// </summary>
public double OverallBillAmount { get; set; }
/// <summary>
/// Gets or sets the overall discount.
/// </summary>
public double? OverallDiscount { get; set; }
/// <summary>
/// Gets or sets the overall taxes.
/// </summary>
public double OverallTaxes { get; set; }
/// <summary>
/// Gets or sets the overall net amount.
/// </summary>
public double OverallNetamount { 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; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The pharmacy retail stock.
/// </summary>
public class PharmacyRetailStock
{
/// <summary>
/// Gets or sets the pharmacy retail stock id.
/// </summary>
[Key, Identity]
public int PharmacyRetailStockId { get; set; }
/// <summary>
/// Gets or sets the pharmacy product id.
/// </summary>
public int PharmacyProductId { get; set; }
/// <summary>
/// Gets or sets the tax id.
/// </summary>
public int TaxId { get; set; }
/// <summary>
/// Gets or sets the quantity in.
/// </summary>
public int QuantityIn { get; set; }
/// <summary>
/// Gets or sets the quantity out.
/// </summary>
public int QuantityOut { get; set; }
/// <summary>
/// Gets or sets the pharmacy stock id.
/// </summary>
public int? PharmacyStockId { get; set; }
/// <summary>
/// Gets or sets the batch number.
/// </summary>
public string BatchNumber { get; set; }
/// <summary>
/// Gets or sets the barcode.
/// </summary>
public string Barcode { get; set; }
/// <summary>
/// Gets or sets the expiry date.
/// </summary>
public DateTime? ExpiryDate { get; set; }
/// <summary>
/// Gets or sets the purchase rate.
/// </summary>
public double PurchaseRate { get; set; }
/// <summary>
/// Gets or sets the mrp.
/// </summary>
public double Mrp { 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 is added directly.
/// </summary>
public bool IsAddedDirectly { get; set; }
/// <summary>
/// Gets or sets the manually updated.
/// </summary>
public int ManuallyUpdated { get; set; }
/// <summary>
/// Gets or sets the retail ware house link identifier.
/// </summary>
/// <value>
/// The retail ware house link identifier.
/// </value>
public int RetailWareHouseLinkId { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is igst.
/// </summary>
/// <value>
/// <c>true</c> if this instance is igst; otherwise, <c>false</c>.
/// </value>
public bool IsIGST { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is SGST.
/// </summary>
/// <value>
/// <c>true</c> if this instance is SGST; otherwise, <c>false</c>.
/// </value>
public bool IsSGST { get; set; }
}
}
namespace Hims.Domain.Entities
{
using Hims.Shared.Dapper.Attributes;
using System;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The pharmacy retail to main.
/// </summary>
public class PharmacyRetailToMain
{
/// <summary>
/// Gets or sets the pharmacy retail to main id.
/// </summary>
[Key, Identity]
public int PharmacyRetailToMainId { get; set; }
/// <summary>
/// Gets or sets the issue detail id.
/// </summary>
public int IssueDetailId { get; set; }
/// <summary>
/// Gets or sets the quantity.
/// </summary>
public int Quantity { get; set; }
/// <summary>
/// Gets or sets the pharmacy product id.
/// </summary>
public int PharmacyProductId { get; set; }
/// <summary>
/// Gets or sets the pharmacy retail stock id.
/// </summary>
public int PharmacyRetailStockId { get; set; }
/// <summary>
/// Gets or sets the pharmacy stock id.
/// </summary>
public int PharmacyStockId { 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 reason.
/// </summary>
public string Reason { get; set; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary> The chat.</summary>
public class PharmacyRetailUser
{
/// <summary>
/// Gets or sets the discharge identifier.
/// </summary>
/// <value>
/// The discharge identifier.
/// </value>
[Key, Identity]
public int PharmacyRetailerId { 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 int AccountId { get; set; }
/// <summary>
/// Gets or sets the discharge identifier.
/// </summary>
/// <value>
/// The discharge identifier.
/// </value>
public int RetailPharmacyId { get; set; }
/// <summary>
// /// Gets or sets a value indicating whether this <see cref="Surgeons"/> 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; }
}
}
namespace Hims.Domain.Entities
{
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The pharmacy sale detail.
/// </summary>
public class PharmacySaleDetail
{
/// <summary>
/// Gets or sets the pharmacy sale detail id.
/// </summary>
[Key, Identity]
public int PharmacySaleDetailId { get; set; }
/// <summary>
/// Gets or sets the pharmacy sale header id.
/// </summary>
public int PharmacySaleHeaderId { get; set; }
/// <summary>
/// Gets or sets the serial num.
/// </summary>
public int SerialNum { get; set; }
/// <summary>
/// Gets or sets the pharmacy product id.
/// </summary>
public int PharmacyProductId { get; set; }
/// <summary>
/// Gets or sets the tax id.
/// </summary>
public int TaxId { get; set; }
/// <summary>
/// Gets or sets the pharmacy retail stock id.
/// </summary>
public int PharmacyRetailStockId { get; set; }
/// <summary>
/// Gets or sets the quantity.
/// </summary>
public int Quantity { get; set; }
/// <summary>
/// Gets or sets the return quantity.
/// </summary>
public int? ReturnQuantity { get; set; }
/// <summary>
/// Gets or sets the total.
/// </summary>
public double Total { get; set; }
/// <summary>
/// Gets or sets the tax amount.
/// </summary>
public double TaxAmount { get; set; }
/// <summary>
/// Gets or sets the discount per item.
/// </summary>
public double? DiscountPerItem { get; set; }
/// <summary>
/// Gets or sets the discount.
/// </summary>
public double? Discount { get; set; }
/// <summary>
/// Gets or sets the net amount.
/// </summary>
public double NetAmount { get; set; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The pharmacy sale header.
/// </summary>
public class PharmacySaleHeader
{
/// <summary>
/// Gets or sets the pharmacy sale header id.
/// </summary>
[Key, Identity]
public int PharmacySaleHeaderId { get; set; }
/// <summary>
/// Gets or sets the bill type.
/// </summary>
public string BillType { get; set; }
/// <summary>
/// Gets or sets the bill number.
/// </summary>
public string BillNumber { get; set; }
/// <summary>
/// Gets or sets the sale date.
/// </summary>
public DateTime SaleDate { 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 mobile.
/// </summary>
public string Mobile { get; set; }
/// <summary>
/// Gets or sets the provider name.
/// </summary>
public string ProviderName { get; set; }
/// <summary>
/// Gets or sets the admission id.
/// </summary>
public int? AdmissionId { get; set; }
/// <summary>
/// Gets or sets the total.
/// </summary>
public double Total { get; set; }
/// <summary>
/// Gets or sets the overall discount.
/// </summary>
public double? OverallDiscount { get; set; }
/// <summary>
/// Gets or sets the overall taxes.
/// </summary>
public double OverallTaxes { get; set; }
/// <summary>
/// Gets or sets the overall net amount.
/// </summary>
public double OverallNetAmount { 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 Payment type.
/// </summary>
public string PaidVia { get; set; }
/// <summary>
/// Gets or sets the provider id.
/// </summary>
public int? ProviderId { 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 payType id.
/// </summary>
public int PayTypeId { get; set; }
/// <summary>
/// Gets or sets the payment Number.
/// </summary>
public string PaymentNumber { get; set; }
/// <summary>
/// Gets or sets the Specialization Id.
/// </summary>
public int? SpecializationId { get; set; }
/// <summary>
/// Gets or sets the Payment status.
/// </summary>
public bool PaymentStatus { get; set; }
/// <summary>
/// Gets or sets the is salucro bill.
/// </summary>
public bool IsSalucroBill { get; set; }
/// <summary>
/// Gets or sets the payment Number.
/// </summary>
public char? PaymentType { get; set; }
/// <summary>
/// Gets or sets the payment Number.
/// </summary>
public string? ReasonForDiscount { get; set; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The pharmacy stock.
/// </summary>
public class PharmacyStock
{
/// <summary>
/// Gets or sets the pharmacy stock id.
/// </summary>
[Key, Identity]
public int PharmacyStockId { get; set; }
/// <summary>
/// Gets or sets the pharmacy product id.
/// </summary>
public int PharmacyProductId { get; set; }
/// <summary>
/// Gets or sets the tax id.
/// </summary>
public int? TaxId { get; set; }
/// <summary>
/// Gets or sets the quantity in.
/// </summary>
public int QuantityIn { get; set; }
/// <summary>
/// Gets or sets the quantity out.
/// </summary>
public int QuantityOut { get; set; }
/// <summary>
/// Gets or sets the batch number.
/// </summary>
public string BatchNumber { get; set; }
/// <summary>
/// Gets or sets the expiry date.
/// </summary>
public DateTime? ExpiryDate { get; set; }
/// <summary>
/// Gets or sets the purchase rate.
/// </summary>
public double PurchaseRate { get; set; }
/// <summary>
/// Gets or sets the mrp.
/// </summary>
public double Mrp { get; set; }
/// <summary>
/// Gets or sets the barcode.
/// </summary>
public string Barcode { get; set; }
/// <summary>
/// Gets or sets the mrp change reason.
/// </summary>
public string MrpChangeReason { 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; }
/// <summary>
/// Gets or sets the created date.
/// </summary>
public DateTime CreatedDate { get; set; }
/// <summary>
/// Gets or sets the modified date.
/// </summary>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets the manually updated.
/// </summary>
public int ManuallyUpdated { get; set; }
/// <summary>
/// Gets or sets the pharmacy ware house identifier.
/// </summary>
/// <value>
/// The pharmacy ware house identifier.
/// </value>
public int PharmacyWareHouseId { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is igst.
/// </summary>
/// <value>
/// <c>true</c> if this instance is igst; otherwise, <c>false</c>.
/// </value>
public bool IsIGST { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is SGST.
/// </summary>
/// <value>
/// <c>true</c> if this instance is SGST; otherwise, <c>false</c>.
/// </value>
public bool IsSGST { get; set; }
}
}
namespace Hims.Domain.Entities
{
using Hims.Shared.Dapper.Attributes;
using System;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The pharmacy store.
/// </summary>
public class PharmacyStore
{
/// <summary>
/// Gets or sets the pharmacy stores identifier.
/// </summary>
/// <value>
/// The pharmacy stores identifier.
/// </value>
[Key, Identity]
public int PharmacyStoreId { 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 name.
/// </summary>
/// <value>
/// The name.
/// </value>
public string Name { get; set; }
/// <summary>
/// Gets or sets the name of the hospital.
/// </summary>
/// <value>
/// The name of the hospital.
/// </value>
public string HospitalName { get; set; }
/// <summary>
/// Gets or sets the location.
/// </summary>
/// <value>
/// The location.
/// </value>
public string Location { get; set; }
/// <summary>
/// Gets or sets the pin code.
/// </summary>
/// <value>
/// The pin code.
/// </value>
public string PinCode { get; set; }
/// <summary>
/// Gets or sets the GST number.
/// </summary>
/// <value>
/// The GST number.
/// </value>
public string GSTNumber { 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="PharmacyStore"/> is active.
/// </summary>
/// <value>
/// <c>true</c> if active; otherwise, <c>false</c>.
/// </value>
public bool Active { 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 Hims.Shared.Dapper.Attributes;
using System;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The pharmacy ware house.
/// </summary>
public class PharmacyWareHouse
{
/// <summary>
/// Gets or sets the pharmacy ware house identifier.
/// </summary>
/// <value>
/// The pharmacy ware house identifier.
/// </value>
[Key, Identity]
public int PharmacyWareHouseId { get; set; }
/// <summary>
/// Gets or sets the name of the ware house.
/// </summary>
/// <value>
/// The name of the ware house.
/// </value>
public string WareHouseName { 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 modified by.
/// </summary>
/// <value>
/// The modified by.
/// </value>
public int? ModifiedBy { 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 modified date.
/// </summary>
/// <value>
/// The modified date.
/// </value>
public DateTime? ModifiedDate { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this <see cref="PharmacyWareHouse"/> is active.
/// </summary>
/// <value>
/// <c>true</c> if active; otherwise, <c>false</c>.
/// </value>
public bool Active { 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 central warehouse location identifier.
/// </summary>
/// <value>
/// The central warehouse location identifier.
/// </value>
public int? CentralWarehouseLocationId { get; set; }
}
}
namespace Hims.Domain.Entities
{
using Hims.Shared.Dapper.Attributes;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The pharmacy ware house user.
/// </summary>
public class PharmacyWareHouseUser
{
/// <summary>
/// Gets or sets the pharmacy ware house user identifier.
/// </summary>
/// <value>
/// The pharmacy ware house user identifier.
/// </value>
[Key, Identity]
public int PharmacyWareHouseUserId { get; set; }
/// <summary>
/// Gets or sets the pharmacy ware house identifier.
/// </summary>
/// <value>
/// The pharmacy ware house identifier.
/// </value>
public int PharmacyWareHouseId { get; set; }
/// <summary>
/// Gets or sets the accoun identifier.
/// </summary>
/// <value>
/// The accoun identifier.
/// </value>
public int AccountId { 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 PhysiotherapyEncounter
{
/// <summary>
/// Gets or sets the physiotherapyEncounter identifier.
/// </summary>
/// <value>
/// The physiotherapyEncounter identifier.
/// </value>
[Key, Identity]
public int PhysiotherapyEncounterId { get; set; }
/// <summary>
/// Gets or sets the appointment id.
/// </summary>
public int AppointmentId { 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 special feature.
/// </summary>
public string? SpecialFeature { get; set; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
/// <summary>
/// The practice.
/// </summary>
public class PracticeLocation
{
/// <summary>
/// Gets or sets the practice id.
/// </summary>
[Key, Identity]
public int PracticeLocationId { get; set; }
/// <summary>
/// Gets or sets the full name.
/// </summary>
public string FullName { get; set; }
/// <summary>
/// Gets or sets the full name.
/// </summary>
public string Email { get; set; }
/// <summary>
/// Gets or sets the practice type.
/// </summary>
public string Phone { get; set; }
/// <summary>
/// Gets or sets the tin.
/// </summary>
public string Extension { get; set; }
/// <summary>
/// Gets or sets the practice type.
/// </summary>
public string StreetAddress { get; set; }
/// <summary>
/// Gets or sets the practice type.
/// </summary>
public string AddressLine2 { get; set; }
/// <summary>
/// Gets or sets the tin.
/// </summary>
public string Zipcode { get; set; }
/// <summary>
/// Gets or sets the practice type.
/// </summary>
public int CountryId { get; set; }
// <summary>
/// Gets or sets the practice type.
/// </summary>
public int PracticeId { get; set; }
// <summary>
/// Gets or sets the practice type.
/// </summary>
public int? StateId { get; set; }
// <summary>
/// Gets or sets the practice type.
/// </summary>
public int? CityId { 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.
/// </summary>
public int LocationId { get; set; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
/// <summary>
/// The practice.
/// </summary>
public class Practice
{
/// <summary>
/// Gets or sets the practice id.
/// </summary>
[Key, Identity]
public int PracticeId { get; set; }
/// <summary>
/// Gets or sets the full name.
/// </summary>
public string FullName { get; set; }
/// <summary>
/// Gets or sets the practice type.
/// </summary>
public char PracticeType { get; set; }
/// <summary>
/// Gets or sets the tin.
/// </summary>
public string TIN { 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; }
}
}
#nullable enable
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
/// <summary>
/// The provider.
/// </summary>
public class PrintSetting
{
///// <summary>
///// Gets or sets a value indicating whether active.
///// </summary>
//public bool Active { get; set; }
/// <summary>
/// Gets or sets a value is print logo.
/// </summary>
public bool IsPrintLogo { get; set; }
///// <summary>
///// Gets or sets the created by.
///// </summary>
//public int? CreatedBy { get; set; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
/// <summary>
/// The icd code.
/// </summary>
public class ProblemList
{
/// <summary>
/// Gets or sets the problem list id.
/// </summary>
[Key, Identity]
public int ProblemListId { get; set; }
/// <summary>
/// Gets or sets the name.
/// </summary>
public string Name { 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; }
}
}
\ No newline at end of file
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