-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
93 additions
and
26 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
JobLeet.WebApi/JobLeet.Api/Models/Common/V1/ExperienceModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace JobLeet.WebApi.JobLeet.Api.Models.Common.V1 | ||
{ | ||
public class ExperienceModel : BaseModel | ||
{ | ||
public ExperienceLevel ExperienceLevel { get; set; } | ||
} | ||
public enum ExperienceLevel | ||
{ | ||
EntryLevel, | ||
Intermediate, | ||
Senior, | ||
Lead, | ||
Principal, | ||
Executive, | ||
Others | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
JobLeet.WebApi/JobLeet.Api/Models/Common/V1/QualificationModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
namespace JobLeet.WebApi.JobLeet.Api.Models.Common.V1 | ||
{ | ||
public class QualificationModel : BaseModel | ||
{ | ||
public List<QualificationType> QualificationTypes { get; set; } | ||
public string QualificationInformation { get; set; } | ||
} | ||
public enum QualificationType | ||
{ | ||
Education, | ||
Skill, | ||
Certification | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
JobLeet.WebApi/JobLeet.Api/Models/Jobs/V1/ApplicationDateModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
namespace JobLeet.WebApi.JobLeet.Api.Models.Jobs.V1 | ||
{ | ||
public class ApplicationDateModel : BaseModel | ||
{ | ||
public DateTime SubmitDate { get; set; } | ||
public DateTime ReviewDate { get; set; } | ||
public DateTime DecisionDate { get; set; } | ||
public string Comments { get; set; } | ||
|
||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
JobLeet.WebApi/JobLeet.Api/Models/Jobs/V1/ApplicationModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
using JobLeet.WebApi.JobLeet.Api.Models.Employers.V1; | ||
|
||
namespace JobLeet.WebApi.JobLeet.Api.Models.Jobs.V1 | ||
{ | ||
public class ApplicationModel : BaseModel | ||
{ | ||
public EmployerModel Employer { get; set; } | ||
public JobModel Job { get; set; } | ||
public StatusModel Status { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
using JobLeet.WebApi.JobLeet.Api.Models.Common.V1; | ||
using JobLeet.WebApi.JobLeet.Api.Models.Companies.V1; | ||
using JobLeet.WebApi.JobLeet.Api.Models.Employers.V1; | ||
|
||
namespace JobLeet.WebApi.JobLeet.Api.Models.Jobs.V1 | ||
{ | ||
public class JobModel : BaseModel | ||
{ | ||
public EmployerModel Employer { get; set; } | ||
public AddressModel JobAddress { get; set; } | ||
public QualificationModel RequiredQualification { get; set; } | ||
public string JobTitle { get; set; } | ||
public string JobDescription { get; set; } | ||
public int Vacancies { get; set; } | ||
public ExperienceModel RequiredExperience { get; set; } | ||
|
||
public decimal BasicPay { get; set; } | ||
public string FunctionalArea { get; set; } | ||
public IndustryTypeModel IndustryType { get; set; } | ||
|
||
public DateTime PostingDate { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
namespace JobLeet.WebApi.JobLeet.Api.Models.Jobs.V1 | ||
{ | ||
public class StatusModel : BaseModel | ||
{ | ||
public StatusName StatusName { get; set; } | ||
} | ||
public enum StatusName | ||
{ | ||
Active, | ||
Inactive, | ||
Pending, | ||
Completed, | ||
Cancelled | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 1 addition & 7 deletions
8
JobLeet.WebApi/JobLeet.Core/Entities/Jobs/V1/ApplicationDate.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters