2024-11-19 16:45:59 +04:00
|
|
|
|
using CandidateReviewContracts.ViewModels;
|
|
|
|
|
using CandidateReviewDataModels.Models;
|
2024-11-04 22:26:40 +04:00
|
|
|
|
|
|
|
|
|
namespace CandidateReviewContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class CompanyBindingModel : ICompanyModel
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
2024-11-06 01:27:34 +04:00
|
|
|
|
public string? LogoFilePath { get; set; }
|
2024-11-04 22:26:40 +04:00
|
|
|
|
|
|
|
|
|
public string? Description { get; set; }
|
|
|
|
|
|
|
|
|
|
public string? Website { get; set; }
|
|
|
|
|
|
|
|
|
|
public string? Address { get; set; }
|
|
|
|
|
|
|
|
|
|
public string? Contacts { get; set; }
|
|
|
|
|
|
|
|
|
|
public int Id { get; set; }
|
2024-11-19 16:45:59 +04:00
|
|
|
|
|
|
|
|
|
public List<IVacancyModel> Vacancies { get; set; } = new();
|
2024-11-04 22:26:40 +04:00
|
|
|
|
}
|
|
|
|
|
}
|