Commit 7a092f49 authored by Sandeep Sagar Panjala's avatar Sandeep Sagar Panjala

initial commit

parent 49daf0f8
namespace Hims.Domain.Entities
{
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
/// <summary>
/// The icd code.
/// </summary>
public class ICDCode
{
/// <summary>
/// Gets or sets the ICD code id.
/// </summary>
[Key, Identity]
public int ICDCodeId { get; set; }
/// <summary>
/// Gets or sets the code.
/// </summary>
public string Code { get; set; }
/// <summary>
/// Gets or sets the description.
/// </summary>
public string Description { get; set; }
}
}
\ No newline at end of file
using Hims.Shared.Dapper.Attributes;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Hims.Domain.Entities
{
/// <summary>
/// The coupon.
/// </summary>
public class ICDValues
{
/// <summary>
/// Gets or sets the icd values is.
/// </summary>
[Key, Identity]
public int ICDValuesId { get; set; }
/// <summary>
/// Gets or sets code.
/// </summary>
public string Code { get; set; }
/// <summary>
/// Gets or sets the usable.
/// </summary>
public string Usable { get; set; }
/// <summary>
/// Gets or sets the short description.
/// </summary>
public string ShortDesc { get; set; }
}
}
namespace Hims.Domain.Entities
{
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The icons.
/// </summary>
public class Icons
{
/// <summary>
/// Gets or sets the icons id.
/// </summary>
[Key, Identity]
public int IconsId { get; set; }
/// <summary>
/// Gets or sets the icon name.
/// </summary>
public string IconName { get; set; }
/// <summary>
/// Gets or sets a value indicating whether active.
/// </summary>
public bool Active { get; set; }
}
}
namespace Hims.Domain.Entities
{
using Hims.Shared.Dapper.Attributes;
using System;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The Id Proof Identifier
/// </summary>
#pragma warning disable S101 // Types should be named in PascalCase
public class IdProof
#pragma warning restore S101 // Types should be named in PascalCase
{
/// <summary>
/// Gets or sets the Id proof identifier.
/// </summary>
/// <value>
/// The Id proof identifier.
/// </value>
[Key, Identity]
public int IdProofId { get; set; }
/// <summary>
/// Gets or sets the name of the HWC.
/// </summary>
/// <value>
/// The name of the HWC.
/// </value>
public string IdProofName { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this <see cref="IdProof"/> 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 indent detail.
/// </summary>
public class IndentDetail
{
/// <summary>
/// Gets or sets the indent detail id.
/// </summary>
[Key, Identity]
public int IndentDetailId { get; set; }
/// <summary>
/// Gets or sets the indent header id.
/// </summary>
public int IndentHeaderId { get; set; }
/// <summary>
/// Gets or sets the product id.
/// </summary>
public int ProductId { get; set; }
/// <summary>
/// Gets or sets the quantity.
/// </summary>
public int Quantity { get; set; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The indent header.
/// </summary>
public class IndentHeader
{
/// <summary>
/// Gets or sets the indent header id.
/// </summary>
[Key, Identity]
public int IndentHeaderId { 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 for requirement.
/// </summary>
public string ReasonForRequirement { get; set; }
/// <summary>
/// Gets or sets the indent to.
/// </summary>
public string IndentTo { get; set; }
/// <summary>
/// Gets or sets the approved by.
/// </summary>
public int? ApprovedBy { get; set; }
/// <summary>
/// Gets or sets the created by.
/// </summary>
[IgnoreUpdate]
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>
[IgnoreUpdate]
public DateTime CreatedDate { 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 retail pharmacy id.
/// </summary>
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 location identifier.
/// </summary>
/// <value>
/// The location identifier.
/// </value>
public int LocationId { get; set; }
/// <summary>
/// Gets or sets the inventory department identifier.
/// </summary>
/// <value>
/// The inventory department identifier.
/// </value>
public int? InventoryDepartmentId { get; set; }
}
}
#nullable enable
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Hims.Domain.Entities.Enums;
using Shared.Dapper.Attributes;
/// <summary>
/// The account.
/// </summary>
[Table("InformationLog", Schema = "mobile")]
public class InformationLog
{
/// <summary>
/// Gets or sets the account id.
/// </summary>
[Key, Identity]
public int InformationLogId { get; set; }
public string? Uuid { get; set; }
public ActionType ActionTypeId { get; set; }
public int? SupportId { get; set; }
public string? SupportIdName { get; set; }
public string? Message { get; set; }
public DateTime Date { 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 insurance for admission.
/// </summary>
public class InsuranceApproval
{
/// <summary>
/// Gets or sets the insurance for admission id.
/// </summary>
[Key, Identity]
public int InsuranceApprovalId { get; set; }
/// <summary>
/// Gets or sets the insurance company id.
/// </summary>
public int PatientInsuranceId { get; set; }
/// <summary>
/// Gets or sets the admission id.
/// </summary>
public int? AdmissionId { get; set; }
/// <summary>
/// Gets or sets the expected amount.
/// </summary>
public double ExpectedAmount { 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 expected settlement date.
/// </summary>
public DateTime? ExpectedSettlementDate { 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 status.
/// </summary>
public string Status { get; set; }
/// <summary>
/// Gets or sets the appointment id.
/// </summary>
public int? AppointmentId { get; set; }
}
}
\ No newline at end of file
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
/// <summary>
/// The insurance company.
/// </summary>
public class InsuranceCompany
{
/// <summary>
/// Gets or sets the insurance company id.
/// </summary>
[Key, Identity]
public int InsuranceCompanyId { get; set; }
/// <summary>
/// Gets or sets the full name.
/// </summary>
public string FullName { get; set; }
/// <summary>
/// Gets or sets the country id.
/// </summary>
public int CountryId { get; set; }
/// <summary>
/// Gets or sets the contact person name.
/// </summary>
public string ContactPersonName { get; set; }
/// <summary>
/// Gets or sets the contact period from.
/// </summary>
public DateTime ContactPeriodFrom { get; set; }
/// <summary>
/// Gets or sets the contact period to.
/// </summary>
public DateTime ContactPeriodTo { get; set; }
/// <summary>
/// Gets or sets the contact person mobile.
/// </summary>
public string ContactPersonMobile { 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 Hims.Shared.Dapper.Attributes;
using System;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The insurance for admission.
/// </summary>
public class InsuranceForAdmission
{
/// <summary>
/// Gets or sets the insurance for admission id.
/// </summary>
[Key, Identity]
public int InsuranceForAdmissionId { get; set; }
/// <summary>
/// Gets or sets the insurance company id.
/// </summary>
public int InsuranceCompanyId { get; set; }
/// <summary>
/// Gets or sets the admission id.
/// </summary>
public int AdmissionId { get; set; }
/// <summary>
/// Gets or sets the expected amount.
/// </summary>
public double ExpectedAmount { 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 expected settlement date.
/// </summary>
public DateTime? ExpectedSettlementDate { 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 status.
/// </summary>
public string Status { get; set; }
}
}
\ No newline at end of file
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
/// <summary>
/// The coupon.
/// </summary>
public class InsuranceTemplate
{
/// <summary>
/// Gets or sets the coupon id.
/// </summary>
[Key, Identity]
public int InsuranceTemplateId { get; set; }
/// <summary>
/// Gets or sets the coupon code.
/// </summary>
public int ChargeModuleTemplateId { get; set; }
/// <summary>
/// Gets or sets the coupon code.
/// </summary>
public int InsuranceCompanyId { get; set; }
/// <summary>
/// Gets or sets the coupon code.
/// </summary>
public int TpaId { 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 pay type id.
/// </summary>
public int AdmissionPayTypeId { get; set; }
}
}
namespace Hims.Domain.Entities
{
using Hims.Shared.Dapper.Attributes;
using System;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The insurance timeline.
/// </summary>
public class InsuranceTimeline
{
/// <summary>
/// Gets or sets the insurance timeline id.
/// </summary>
[Key, Identity]
public int InsuranceTimelineId { get; set; }
/// <summary>
/// Gets or sets the insurance admission id.
/// </summary>
public int InsuranceForAdmissionId { get; set; }
/// <summary>
/// Gets or sets the comment.
/// </summary>
public string Comment { get; set; }
/// <summary>
/// Gets or sets the attachments.
/// </summary>
public string Attachments { 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; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
/// <summary>
/// The pharmacyLog.
/// </summary>
public class InventoryLog
{
/// <summary>
/// Gets or sets the pharmacyLog id.
/// </summary>
[Key, Identity]
public int InventoryLogId { get; set; }
/// <summary>
/// Gets or sets the Log type.
/// </summary>
public int InventoryLogTypeId { 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; }
}
}
\ No newline at end of file
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The inventory product.
/// </summary>
public class InventoryProduct
{
/// <summary>
/// Gets or sets the inventory product id.
/// </summary>
[Key, Identity]
public int InventoryProductId { get; set; }
/// <summary>
/// Gets or sets the product name.
/// </summary>
public string ProductName { get; set; }
/// <summary>
/// Gets or sets the company id.
/// </summary>
public int CompanyId { get; set; }
/// <summary>
/// Gets or sets the category id.
/// </summary>
public int CategoryId { get; set; }
/// <summary>
/// Gets or sets the tax id.
/// </summary>
public int TaxId { get; set; }
/// <summary>
/// Gets or sets the purchase unit.
/// </summary>
public int PurchaseUnit { get; set; }
/// <summary>
/// Gets or sets the purchase unit quantity.
/// </summary>
public int PurchaseUnitQuantity { get; set; }
/// <summary>
/// Gets or sets a value indicating whether is batch number.
/// </summary>
public bool IsBatchNumber { get; set; }
/// <summary>
/// Gets or sets a value indicating whether is expiry.
/// </summary>
public bool IsExpiry { 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.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The inventory purchase detail.
/// </summary>
public class InventoryPurchaseDetail
{
/// <summary>
/// Gets or sets the inventory purchase detail id.
/// </summary>
[Key, Identity]
public int InventoryPurchaseDetailId { get; set; }
/// <summary>
/// Gets or sets the inventory purchase header id.
/// </summary>
public int InventoryPurchaseHeaderId { get; set; }
/// <summary>
/// Gets or sets the inventory product id.
/// </summary>
public int InventoryProductId { 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 tax id.
/// </summary>
public int TaxId { get; set; }
/// <summary>
/// Gets or sets the inventory stock id.
/// </summary>
public int InventoryStockId { get; set; }
/// <summary>
/// Gets or sets the quantity.
/// </summary>
public double Quantity { get;set; }
/// <summary>
/// Gets or sets the free.
/// </summary>
public double Free { get;set; }
/// <summary>
/// Gets or sets the purchase rate.
/// </summary>
public double PurchaseRate { 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.
/// </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.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The inventory purchase header.
/// </summary>
public class InventoryPurchaseHeader
{
/// <summary>
/// Gets or sets the inventory purchase header id.
/// </summary>
[Key, Identity]
public int InventoryPurchaseHeaderId { 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 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 net amount.
/// </summary>
public double NetAmount { 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 inventory ware house identifier.
/// </summary>
/// <value>
/// The inventory ware house identifier.
/// </value>
public int InventoryWareHouseId { 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 due date.
/// </summary>
public DateTime? DueDate { get; set; }
}
}
namespace Hims.Domain.Entities
{
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The inventory purchase return detail.
/// </summary>
public class InventoryPurchaseReturnDetail
{
/// <summary>
/// Gets or sets the inventory purchase return detail id.
/// </summary>
[Key, Identity]
public int InventoryPurchaseReturnDetailId { get; set; }
/// <summary>
/// Gets or sets the inventory purchase return header id.
/// </summary>
public int InventoryPurchaseReturnHeaderId { get; set; }
/// <summary>
/// Gets or sets the serial no.
/// </summary>
public int SerialNo { get; set; }
/// <summary>
/// Gets or sets the inventory product id.
/// </summary>
public int InventoryProductId { get; set; }
/// <summary>
/// Gets or sets the tax id.
/// </summary>
public int TaxId { get; set; }
/// <summary>
/// Gets or sets the inventory stock id.
/// </summary>
public int InventoryStockId { get; set; }
/// <summary>
/// Gets or sets the quantity.
/// </summary>
public int Quantity { 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 percentage.
/// </summary>
public double? DiscountPercentage { 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 inventory purchase return header.
/// </summary>
public class InventoryPurchaseReturnHeader
{
/// <summary>
/// Gets or sets the inventory purchase return header id.
/// </summary>
[Key, Identity]
public int InventoryPurchaseReturnHeaderId { 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 supplier id.
/// </summary>
public int SupplierId { get; set; }
/// <summary>
/// Gets or sets the return amount.
/// </summary>
public double ReturnAmount { 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 net amount.
/// </summary>
public double NetAmount { 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 Hims.Shared.Dapper.Attributes;
/// <summary>
/// The inventory stock.
/// </summary>
public class InventoryStock
{
/// <summary>
/// Gets or sets the inventory stock id.
/// </summary>
[Key, Identity]
public int InventoryStockId { get; set; }
/// <summary>
/// Gets or sets the department id.
/// </summary>
public int? DepartmentId { get; set; }
/// <summary>
/// Gets or sets the inventory product id.
/// </summary>
public int InventoryProductId { 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 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 inventory ware house identifier.
/// </summary>
/// <value>
/// The inventory ware house identifier.
/// </value>
public int InventoryWareHouseId { get; set; }
}
}
namespace Hims.Domain.Entities
{
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The issue detail.
/// </summary>
public class IssueDetail
{
/// <summary>
/// Gets or sets the issue detail id.
/// </summary>
[Key, Identity]
public int IssueDetailId { get; set; }
/// <summary>
/// Gets or sets the issue header id.
/// </summary>
public int IssueHeaderId { get; set; }
/// <summary>
/// Gets or sets the product id.
/// </summary>
public int ProductId { get; set; }
/// <summary>
/// Gets or sets the stock id.
/// </summary>
public int StockId { get; set; }
/// <summary>
/// Gets or sets the quantity.
/// </summary>
public int Quantity { get; set; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The issue header.
/// </summary>
public class IssueHeader
{
/// <summary>
/// Gets or sets the issue header id.
/// </summary>
[Key, Identity]
public int IssueHeaderId { get; set; }
/// <summary>
/// Gets or sets the issue date.
/// </summary>
public DateTime IssueDate { get; set; }
/// <summary>
/// Gets or sets the approved date.
/// </summary>
public DateTime ApprovedDate { get; set; }
/// <summary>
/// Gets or sets the indent header id.
/// </summary>
public int? IndentHeaderId { 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 operation indent header identifier.
/// </summary>
/// <value>
/// The operation indent header identifier.
/// </value>
public int? OperationIndentHeaderId { 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 inventory ware house identifier.
/// </summary>
/// <value>
/// The inventory ware house identifier.
/// </value>
public int? InventoryWareHouseId { 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 IssueHealthCard
{
/// <summary>
/// Gets or sets the issue health card id.
/// </summary>
[Key, Identity]
public int IssueHealthCardId { get; set; }
/// <summary>
/// Gets or sets the health card name.
/// </summary>
public int HealthCardId { get; set; }
/// <summary>
/// Gets or sets the amount.
/// </summary>
public string CardNumber { get; set; }
/// <summary>
/// Gets or sets the allow members.
/// </summary>
public int PatientId { 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 issued date.
/// </summary>
public DateTime IssuedDate { get; set; }
/// <summary>
/// Gets or sets the modified by.
/// </summary>
public int? ModifiedBy { 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 net amount.
/// </summary>
public double NetAmount { get; set; }
/// <summary>
/// Gets or sets the valid till.
/// </summary>
public DateTime ValidTill { 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 IvfEncounter
{
/// <summary>
/// Gets or Sets the ivf Encounter
/// </summary>
[Key, Identity]
public int IvfEncounterId { get; set; }
/// <summary>
/// Gets or Sets the appointment id
/// </summary>
public int? AppointmentId { get; set; }
/// <summary>
/// Gets or Sets the ivf encounter date
/// </summary>
public DateTime IvfEncounterDate { 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 the gyn history
/// </summary>
public string GynHistory { get; set; }
/// <summary>
/// Gets or Sets the gyn iui
/// </summary>
public string GynIUI { get; set; }
/// <summary>
/// Gets or Sets the menstrual history
/// </summary>
public string MensutralHistory { get; set; }
/// <summary>
/// Gets or Sets the birth control
/// </summary>
public string BirthControl { get; set; }
/// <summary>
/// Gets or Sets the embryo freezing
/// </summary>
public string EmbryoFreezing { get; set; }
/// <summary>
/// Gets or Sets the birth control
/// </summary>
public string InfertilityHistory { get; set; }
/// <summary>
/// Gets or Sets the birth control
/// </summary>
public string MarriedLifeHistory { get; set; }
/// <summary>
/// Gets or Sets the birth control
/// </summary>
public string ContraceptionHistory { get; set; }
/// <summary>
/// Gets or Sets the birth control
/// </summary>
public string MenstrualHistoryPresent { get; set; }
/// <summary>
/// Gets or Sets the birth control
/// </summary>
public string AddIUIData { get; set; }
/// <summary>
/// Gets or Sets the birth control
/// </summary>
public string DualTriggerInjection { get; set; }
/// <summary>
/// Gets or Sets the birth control
/// </summary>
public string IUIStimulationScan { get; set; }
/// <summary>
/// Gets or Sets the birth control
/// </summary>
public string IUISummary { get; set; }
/// <summary>
/// Gets or Sets the birth control
/// </summary>
public string Laproscopy { get; set; }
/// <summary>
/// Gets or Sets the birth control
/// </summary>
public string Hysteroscopy { get; set; }
/// <summary>
/// Gets or Sets the CoitalHistory
/// </summary>
public string CoitalHistory { get; set; }
/// <summary>
/// Gets or Sets the PreviousObstetricHistory
/// </summary>
public string PreviousObstetricHistory { get; set; }
/// <summary>
/// Gets or Sets the PreviousInfertilityTreatmentHistory
/// </summary>
public string PreviousInfertilityTreatmentHistory { get; set; }
/// <summary>
/// Gets or Sets the PreviousObstetricHistory
/// </summary>
public string MedicalAndSurgicalHistory { get; set; }
public string IvfData { get; set; }
/// <summary>
/// Gets or Sets the SingleTriggerInjection
/// </summary>
public string SingleTriggerInjection { get; set; }
/// <summary>
/// Gets or Sets the DoubleTriggerInjection
/// </summary>
public string IvfDualTriggerInjection { get; set; }
/// <summary>
/// Gets or Sets the fet
/// </summary>
public string Fet { get; set; }
/// <summary>
/// Gets or Sets the IvfSimulationScan
/// </summary>
public string IvfSimulationScan { get; set; }
/// <summary>
/// Gets or Sets the IvfSummary
/// </summary>
public string OtherInvestigationHistory { get; set; }
/// <summary>
/// Gets or Sets the IvfSummary
/// </summary>
public string PersonalHistory { get; set; }
/// <summary>
/// Gets or Sets the IvfSummary
/// </summary>
public string FamilyHistory { get; set; }
/// <summary>
/// Gets or Sets the IvfSummary
/// </summary>
public string PhysicalGyecologicalHistory { get; set; }
/// <summary>
/// Gets or Sets the embryo thawing
/// </summary>
public string EmbryoThawing { get; set; }
/// <summary>
/// Gets or Sets the aspiration
/// </summary>
public string Aspiration { get; set; }
/// <summary>
/// Gets or Sets the cryo preservation
/// </summary>
public string CryoPreservation { get; set; }
/// <summary>
/// Gets or Sets the oocyte cryo preservation
/// </summary>
public string OocytCryoPreservation { get; set; }
/// <summary>
/// Gets or Sets the embryology detail
/// </summary>
public string EmbyologyDetail { get; set; }
/// <summary>
/// Gets or Sets the birth control
/// </summary>
public string Fertilization{ get; set; }
/// <summary>
/// Gets or Sets the birth control
/// </summary>
public string EmbryoQuality { get; set; }
/// <summary>
/// Gets or Sets the birth control
/// </summary>
public string StimulationChart { get; set; }
/// <summary>
/// Gets or Sets the birth control
/// </summary>
public string ObservationInfertility { get; set; }
/// <summary>
/// Gets or Sets the birth control
/// </summary>
public string IvfSummary { get; set; }
/// <summary>
/// Gets or Sets the birth control
/// </summary>
public string OrdersPrescription { get; set; }
}
}
namespace Hims.Domain.Entities
{
using System;
using Hims.Shared.Dapper.Attributes;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The lab booking detail.
/// </summary>
public class LabBookingDetail
{
/// <summary>
/// Gets or sets the lab booking detail id.
/// </summary>
[Key, Identity]
public int LabBookingDetailId { get; set; }
/// <summary>
/// Gets or sets the lab booking header id.
/// </summary>
public int LabBookingHeaderId { get; set; }
/// <summary>
/// Gets or sets the lab header id.
/// </summary>
public int? LabHeaderId { get; set; }
/// <summary>
/// Gets or sets the lab package id.
/// </summary>
public int? LabPackageId { get; set; }
/// <summary>
/// Gets or sets the lab service identifier.
/// </summary>
/// <value>
/// The lab service identifier.
/// </value>
public int? LabServicesId { get; set; }
/// <summary>
/// Gets or sets the amount.
/// </summary>
public double Amount { get; set; }
/// <summary>
/// Gets or sets the status.
/// </summary>
public string Status { get; set; }
/// <summary>
/// Gets or sets a value indicating whether is report generated.
/// </summary>
public bool? IsReportGenerated { get; set; }
/// <summary>
/// Gets or sets the report date.
/// </summary>
public DateTime? ReportDate { get; set; }
/// <summary>
/// Gets or sets a value indicating whether is sample collected.
/// </summary>
public bool? IsSampleCollected { get; set; }
/// <summary>
/// Gets or sets the sample date.
/// </summary>
public DateTime? SampleDate { get; set; }
/// <summary>
/// Gets or sets the typed by.
/// </summary>
public int? TypedBy { get; set; }
/// <summary>
/// Gets or sets the typed date.
/// </summary>
public DateTime? TypedDate { get; set; }
/// <summary>
/// Gets or sets the verified by.
/// </summary>
public int? VerifiedBy { get; set; }
/// <summary>
/// Gets or sets the discount percentage.
/// </summary>
public int? 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 lab date.
/// </summary>
/// <value>
/// The lab date.
/// </value>
public DateTime? LabDate { get; set; }
/// <summary>
/// Gets or sets the verified by doctor identifier.
/// </summary>
/// <value>
/// The verified by doctor identifier.
/// </value>
public int? VerifiedByDoctorId { get; set; }
/// <summary>
/// Gets or sets the sample collected by account identifier.
/// </summary>
/// <value>
/// The sample collected by account identifier.
/// </value>
public int? SampleCollectedBy { get; set; }
/// <summary>
/// Gets or sets the barcode identifier.
/// </summary>
/// <value>
/// The barcode identifier.
/// </value>
public bool Barcode { get; set; }
/// <summary>
/// Gets or sets the barcode generated by identifier.
/// </summary>
/// <value>
/// The barcode generated by identifier.
/// </value>
public int? BarcodeGeneratedBy { get; set; }
/// <summary>
/// Gets or sets the borcode generated date.
/// </summary>
/// <value>
/// The borcode generated date identifier.
/// </value>
public DateTime? BarcodeGeneratedDate { get; set; }
}
}
namespace Hims.Domain.Entities
{
using Hims.Shared.Dapper.Attributes;
using System;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The lab booking header.
/// </summary>
public class LabBookingHeader
{
/// <summary>
/// Gets and sets the lab booking header id.
/// </summary>
[Key, Identity]
public int LabBookingHeaderId { get; set; }
/// <summary>
/// Gets or sets patient type.
/// </summary>
public string PatientType { get; set; }
/// <summary>
/// Gets or sets the bill number.
/// </summary>
public string BillNumber { 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 doctor name.
/// </summary>
public string DoctorName { get; set; }
/// <summary>
/// Gets or sets the net amount.
/// </summary>
public double NetAmount { get; set; }
/// <summary>
/// Gets or sets the paid via.
/// </summary>
//public string PaidVia { get; set; } adding paytypeId instead.
/// <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 booking date.
/// </summary>
public DateTime BookingDate { get; set; }
/// <summary>
/// Gets or sets the mobile.
/// </summary>
public string Mobile { get; set; }
/// <summary>
/// Gets or sets the overall discount.
/// </summary>
public double? OverallDiscount { get; set; }
/// <summary>
/// Gets or sets the overall discount percentage.
/// </summary>
public double? OverallDiscountPercentage { get; set; }
/// <summary>
/// Gets or sets the total amount.
/// </summary>
public double TotalAmount { get; set; }
/// <summary>
/// Gets or sets the value indicating weather its 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 admission id.
/// </summary>
public int? AdmissionId { get; set; }
/// <summary>
/// Gets or sets the appointment id.
/// </summary>
public int? AppointmentId { get; set; }
/// <summary>
/// Gets or sets the notes.
/// </summary>
public string? Notes { get; set; }
/// <summary>
/// Gets or sets the Lab location id.
/// </summary>
public int? LocationId { get; set; }
/// <summary>
/// Gets or sets the Pay Type id.
/// </summary>
public int PayTypeId { get; set; }
/// <summary>
/// Gets or sets the payment/transaction number.
/// </summary>
public string PaymentNumber { get; set; }
}
}
namespace Hims.Domain.Entities
{
using Hims.Shared.Dapper.Attributes;
using System;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The lab booking package detail.
/// </summary>
public class LabBookingPackageDetail
{
/// <summary>
/// Gets or sets the lab booking package detail id.
/// </summary>
[Key, Identity]
public int LabBookingPackageDetailId { get; set; }
/// <summary>
/// Gets or sets the lab booking detail id.
/// </summary>
public int LabBookingDetailId { get; set; }
/// <summary>
/// Gets or sets the lab header id.
/// </summary>
public int LabHeaderId { get; set; }
/// <summary>
/// Gets or sets the status.
/// </summary>
public string Status { get; set; }
/// <summary>
/// Gets or sets the is report generated.
/// </summary>
public bool? IsReportGenerated { get; set; }
/// <summary>
/// Gets or sets the is sample collected.
/// </summary>
public bool? IsSampleCollected { get; set; }
/// <summary>
/// Gets or sets the report date.
/// </summary>
public DateTime? ReportDate { get; set; }
/// <summary>
/// Gets or sets the sample date.
/// </summary>
public DateTime? SampleDate { get; set; }
/// <summary>
/// Gets or sets the typed date.
/// </summary>
public DateTime? TypedDate { get; set; }
/// <summary>
/// Gets or sets the typed by.
/// </summary>
public int? TypedBy { get; set; }
/// <summary>
/// Gets or sets the verified by.
/// </summary>
public int? VerifiedBy { get; set; }
/// <summary>
/// Gets or sets the verified by doctor identifier.
/// </summary>
/// <value>
/// The verified by doctor identifier.
/// </value>
public int? VerifiedByDoctorId { get; set; }
/// <summary>
/// Gets or sets the collected sample received by.
/// </summary>
/// <value>
/// The collected sample received by.
/// </value>
public int? CollectedSampleReceivedBy { get; set; }
/// <summary>
/// Gets or sets the collected sample received by.
/// </summary>
/// <value>
/// The collected sample received by.
/// </value>
public int? SampleCollectedBy { get; set; }
/// <summary>
/// Gets or sets the barcode identifier.
/// </summary>
/// <value>
/// The barcode identifier.
/// </value>
public bool Barcode { get; set; }
/// <summary>
/// Gets or sets the barcode generated by identifier.
/// </summary>
/// <value>
/// The barcode generated by identifier.
/// </value>
public int? BarcodeGeneratedBy { get; set; }
/// <summary>
/// Gets or sets the borcode generated date.
/// </summary>
/// <value>
/// The borcode generated date identifier.
/// </value>
public DateTime? BarcodeGeneratedDate { get; set; }
}
}
namespace Hims.Domain.Entities
{
using Hims.Shared.Dapper.Attributes;
using System;
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The lab department
/// </summary>
public class LabDepartment
{
/// <summary>
/// Gets or sets the lab department identifier.
/// </summary>
/// <value>
/// The lab department identifier.
/// </value>
[Key, Identity]
public int LabDepartmentId { get; set; }
/// <summary>
/// Gets or sets the name of the department.
/// </summary>
/// <value>
/// The name of the department.
/// </value>
public string DepartmentName { 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 this <see cref="LabDepartment"/> 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>
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; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Hims.Shared.Dapper.Attributes;
/// <summary>
/// The lab detail.
/// </summary>
public class LabDetail
{
/// <summary>
/// Gets or sets the lab detail id.
/// </summary>
[Key, Identity]
public int LabDetailId { get; set; }
/// <summary>
/// Gets or sets the lab header id.
/// </summary>
public int LabHeaderId { get; set; }
/// <summary>
/// Gets or sets the test parameter.
/// </summary>
public string TestParameter { get; set; }
/// <summary>
/// Gets or sets the reference range.
/// </summary>
public string ReferenceRange { get; set; }
/// <summary>
/// Gets or sets the refrence range unit.
/// </summary>
public int? RefrenceRangeUnit { get; set; }
/// <summary>
/// Gets or sets the active.
/// </summary>
public bool Active { get; set; }
}
}
namespace Hims.Domain.Entities
{
using Hims.Shared.Dapper.Attributes;
using System.ComponentModel.DataAnnotations;
using System;
/// <summary>
/// The lab header.
/// </summary>
public class LabHeader
{
/// <summary>
/// Gets or sets the lab header id.
/// </summary>
[Key, Identity]
public int LabHeaderId { get; set; }
/// <summary>
/// Gets or sets the lab code.
/// </summary>
public string LabCode { get; set; }
/// <summary>
/// Gets or sets the signature.
/// </summary>
public string Signature { get; set; }
/// <summary>
/// Gets or sets the lab name.
/// </summary>
public string LabName { get; set; }
/// <summary>
/// Gets or sets the charge.
/// </summary>
public double Charge { get; set; }
/// <summary>
/// Gets or sets the in patient charge.
/// </summary>
// public double InPatientCharge { 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 lab department identifier.
/// </summary>
/// <value>
/// The lab department identifier.
/// </value>
public int LabDepartmentId { get; set; }
/// <summary>
/// Gets or sets the in patient charges
/// </summary>
/// <value>
/// The In patient charges
/// </value>
public double InPatientCharge { get; set; }
}
}
namespace Hims.Domain.Entities
{
using System;
using System.ComponentModel.DataAnnotations;
using Shared.Dapper.Attributes;
/// <summary>
/// The pharmacyLog.
/// </summary>
public class LabLog
{
/// <summary>
/// Gets or sets the pharmacyLog id.
/// </summary>
[Key, Identity]
public int LabLogId { get; set; }
/// <summary>
/// Gets or sets the Log type.
/// </summary>
public int LabLogTypeId { 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
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