Entity class InternshipEntity name changed to Internship namespace Internship changed to InternshipSystem
15 lines
402 B
C#
15 lines
402 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace InternshipSystem.Core
|
|
{
|
|
public class Company
|
|
{
|
|
public string Nip { get; set; }
|
|
public string Name { get; set; }
|
|
public RangeOfActivities Range { get; set; }
|
|
public Uri SiteAddress { get; set; }
|
|
public int Provider { get; set; }
|
|
public List<BranchOffice> Branches { get; set; }
|
|
}
|
|
} |