private bool TechnicianExists(int id)
 {
     return(repository.Exists(id));
 }
 private bool ProposalExists(int id)
 {
     return(repository.Exists(id));
 }
 private bool UserJobExists(int id)
 {
     return(repository.Exists(id));
 }