18 lines
410 B
C#
18 lines
410 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AlfaPrentice.Models
|
|
{
|
|
public class BPVDocent
|
|
{
|
|
[Key]
|
|
public int BPVdocent_ID { get; set; }
|
|
public int Docent_ID { get; set; }
|
|
public int Student_ID { get; set; }
|
|
public int Traject_ID { get; set; }
|
|
}
|
|
}
|