Exemplo n.º 1
0
        public void GetJobCVTest()
        {
            //Arrange
            JobCVCtr jobCVCtr = new JobCVCtr();

            //Act
            JobCV jobCv = jobCVCtr.Get(1);

            //Assert
            Assert.IsTrue(jobCv != null);
        }
Exemplo n.º 2
0
 /// <summary>
 /// Returns a single JobCV from the database by the given id.
 /// </summary>
 /// <param name="applierId"></param>
 /// <returns></returns>
 public JobCV Get(int applierId)
 {
     return(jobCVCtr.Get(applierId));
 }
Exemplo n.º 3
0
 public JobCV GetJobCV(int id)
 {
     return(jobCVCtr.Get(id));
 }