You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.8 KiB
57 lines
1.8 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
|
|
namespace BWPMModels
|
|
{
|
|
public class Zuteilung
|
|
{
|
|
public int ID { get; set; } = 0;
|
|
public int? firmaberufID { get; set; } = 0;
|
|
public int? schuelerberufID { get; set; } = 0;
|
|
public string bemerkung { get; set; } = "";
|
|
public int? schuelerid { get; set; } = 0;
|
|
public int? zeitID { get; set; } = 0;
|
|
public int? ansprechpartnerID { get; set; } = 0;
|
|
public int? prioritaet { get; set; } = 0;
|
|
public bool? aktiv { get; set; } = true;
|
|
public DateTime? erstellt_am { get; set; } = DateTime.Now;
|
|
public DateTime? mutiert_am { get; set; } = DateTime.Now;
|
|
public string mutierer { get; set; } = "";
|
|
public int? mandantnr { get; set; } = 0;
|
|
}
|
|
|
|
public class ZuteilungView
|
|
{
|
|
public int ID { get; set; } = 0;
|
|
public int? schuelerid { get; set; } = 0;
|
|
public string beruf { get; set; } = "";
|
|
public string zeit { get; set; } = "";
|
|
public string firma { get; set; } = "";
|
|
public int? prioritaet { get; set; } = 0;
|
|
public string bemerkung { get; set; } = "";
|
|
}
|
|
|
|
|
|
public class View_Zuteilung
|
|
{
|
|
public int id { get; set; } = 0;
|
|
public string NameZ1 { get; set; } = "";
|
|
public string Bezeichnung { get; set; } = "";
|
|
public string Zeit { get; set; } = "";
|
|
public int Schuelerid { get; set; } = 0;
|
|
public string Bemerkung { get; set; } = "";
|
|
}
|
|
|
|
public class View_Offene_Plaetze
|
|
{
|
|
public int ID { get; set; } = 0;
|
|
public string nameZ1 { get; set; } = "";
|
|
public string zeit { get; set; } = "";
|
|
public int anzahl { get; set; } = 0;
|
|
public string typ { get; set; } = "";
|
|
|
|
}
|
|
}
|