Update 20231016
This commit is contained in:
@@ -1,39 +1,36 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DPMService.Models
|
||||
{
|
||||
public class PatCharge
|
||||
{
|
||||
public int ID { get; set; } = 0;
|
||||
|
||||
public int? PatientID { get; set; } = 0;
|
||||
|
||||
public string CharcheCode { get; set; } = "";
|
||||
|
||||
public DateTime? erstellt_am { get; set; } = DateTime.Now;
|
||||
|
||||
public DateTime? mutiert_am { get; set; } = DateTime.Now;
|
||||
|
||||
public string mutierer { get; set; } = "";
|
||||
|
||||
public bool aktiv { get; set; } = true;
|
||||
|
||||
}
|
||||
|
||||
public class ViewPatCharche
|
||||
{
|
||||
public int id { get; set; } = 0;
|
||||
|
||||
public int? patid { get; set; } = 0;
|
||||
|
||||
public string charge { get; set; } = "";
|
||||
public string datum { get; set; } = "";
|
||||
|
||||
public bool aktiv { get; set; } = true;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
using System;
|
||||
|
||||
namespace DPMService.Models
|
||||
{
|
||||
public class PatCharge
|
||||
{
|
||||
public int ID { get; set; } = 0;
|
||||
|
||||
public int? PatientID { get; set; } = 0;
|
||||
|
||||
public string CharcheCode { get; set; } = "";
|
||||
|
||||
public DateTime? erstellt_am { get; set; } = DateTime.Now;
|
||||
|
||||
public DateTime? mutiert_am { get; set; } = DateTime.Now;
|
||||
|
||||
public string mutierer { get; set; } = "";
|
||||
|
||||
public bool aktiv { get; set; } = true;
|
||||
|
||||
}
|
||||
|
||||
public class ViewPatCharche
|
||||
{
|
||||
public int id { get; set; } = 0;
|
||||
|
||||
public int? patid { get; set; } = 0;
|
||||
|
||||
public string charge { get; set; } = "";
|
||||
public string datum { get; set; } = "";
|
||||
|
||||
public bool aktiv { get; set; } = true;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user