Bugfixes
This commit is contained in:
17
WD7UVN_HFT_2023241.Models/Client.cs
Normal file
17
WD7UVN_HFT_2023241.Models/Client.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WD7UVN_HFT_2023241.Models
|
||||
{
|
||||
public class Client
|
||||
{
|
||||
public int ID { get; set; }
|
||||
public string NAME { get; set; }
|
||||
public string EMAIL { get; set; }
|
||||
public string PHONE { get; set; }
|
||||
public int SERVICE_ID { get; set; }
|
||||
}
|
||||
}
|
||||
17
WD7UVN_HFT_2023241.Models/Company.cs
Normal file
17
WD7UVN_HFT_2023241.Models/Company.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WD7UVN_HFT_2023241.Models
|
||||
{
|
||||
public class Company
|
||||
{
|
||||
public List<MaintainerTeam> Maintainers { get; set; }
|
||||
public List<Client> Customers { get; set; }
|
||||
public List<Employee> Employees { get; set; }
|
||||
public List<Client> Clients { get; set; }
|
||||
public List<Service> Services { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user