added repos plus file sturucture changes
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user