Impliment application
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
namespace BoredCareers.Entities {
|
||||
public class Application {
|
||||
public int? ID { get; set; } // PK
|
||||
public int AccountID { get; set; } // FK
|
||||
public int ResumeID { get; set; } // FK
|
||||
public int JobListingID { get; set; } // FK
|
||||
public DateTime DateApplied { get; set; }
|
||||
public string ResponseStatus { get; set; } = "";
|
||||
public bool HasBeenViewed { get; set; } = false;
|
||||
public int Rating { get; set; }
|
||||
public string Notes { get; set; } = "";
|
||||
}
|
||||
}
|
||||
@@ -7,8 +7,8 @@ namespace BoredCareers.Entities {
|
||||
public bool EmailVerified { get; set; } = false;
|
||||
public string WebsiteURL { get; set; } = "";
|
||||
public string Logo { get; set; } = "";
|
||||
public int JobsClosedSuccessful { get; set; } = 0;
|
||||
public int JobsAutoClosed { get; set; } = 0;
|
||||
public int JobsClosedSuccessful { get; set; }
|
||||
public int JobsAutoClosed { get; set; }
|
||||
public string Phone { get; set; } = "";
|
||||
public string PostalCode { get; set; } = "";
|
||||
public string Country { get; set; } = ""; // 2 Letter Country Code
|
||||
|
||||
Reference in New Issue
Block a user