-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathPractitioner.cs
More file actions
24 lines (23 loc) · 866 Bytes
/
Practitioner.cs
File metadata and controls
24 lines (23 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Prime.Models
{
/// <summary>store college id, pracRefId and the contact information.
/// mainly used by unauthorized reporting from transaction log.</summary>
[Table("Practitioner")]
public class Practitioner : BaseAuditable
{
[Key]
public int Id { get; set; }
public string CollegeId { get; set; }
public string PracRefId { get; set; }
public string FirstName { get; set; }
public string MiddleInitial { get; set; }
public string LastName { get; set; }
public DateTime? DateofBirth { get; set; }
public string Status { get; set; }
public DateTimeOffset? EffectiveDate { get; set; }
public DateTime? ProcessedDate { get; set; }
}
}