private string _getGroupName(int id)
        {
            PersonnelContext mdb = new PersonnelContext();

            return((from n in mdb.GroupTitles
                    where n.GroupTitleID == id
                    select n.Name).FirstOrDefault());
        }
 public DepartmentRepository(PersonnelContext context) : base(context)
 {
 }
예제 #3
0
 public PersonnelEducationCompassClientTests()
 {
     _context = new PersonnelContext(new CompassClient(Credentials.FirmId, Credentials.ApiKey, Credentials.Username, Credentials.Password));
 }
 public PersonnelRepository(PersonnelContext context) : base(context)
 {
 }