Impliment application

This commit is contained in:
2025-08-04 17:27:22 -07:00
parent 2d627733d7
commit 0a71162162
6 changed files with 285 additions and 4 deletions
+13
View File
@@ -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; } = "";
}
}
+2 -2
View File
@@ -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