Entity class InternshipEntity name changed to Internship namespace Internship changed to InternshipSystem
10 lines
248 B
C#
10 lines
248 B
C#
namespace InternshipSystem.Core
|
|
{
|
|
public class BranchOffice
|
|
{
|
|
public int Id { get; set; }
|
|
public Address Address { get; set; }
|
|
public Company Company { get; set; }
|
|
public int Provider { get; set; }
|
|
}
|
|
} |