private static void fullFillContactTypeTable()
 {
     ContactTypeService contactTypeSrv = new ContactTypeService();
     contactTypeSrv.addNew("skype", false);//TODO: take first from list
     contactTypeSrv.addNew("phone", true);
     contactTypeSrv.addNew("email", false);
     List<ContactTypeBO> contactTypes = contactTypeSrv.getAllFromTable();
     Assert.AreNotEqual(0, contactTypes.Count(), string.Format("There should be values in 'ContactType' Table."));
 }