added repos plus file sturucture changes

This commit is contained in:
mathieusteen
2020-12-18 12:58:49 +01:00
parent 3ee6e09d8e
commit 3cfa6713a7
246 changed files with 303 additions and 4 deletions
+18
View File
@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class Sollicitatie
{
[Key]
public int Sollicitatie_ID { get; set; }
public DateTime SolicitaieDatum { get; set; }
public string Status { get; set; }
public int Bedrijf_ID { get; set; }
public int Student_ID { get; set; }
}
}