Esempio n. 1
0
 public static int UpdateFamilyWifeId(int familyId, int wifeId)
 {
     return(DBAccessStatic.UpdateTable("Family", "WifeId", wifeId.ToString(), familyId));
 }
Esempio n. 2
0
 public static int UpdateFamilyMarriagePlace(int familyId, string marriagePlace)
 {
     return(DBAccessStatic.UpdateTable("Family", "MarriagePlace", marriagePlace, familyId));
 }
Esempio n. 3
0
 public static int UpdateIndividualGender(int individualId, string gender)
 {
     return(DBAccessStatic.UpdateTable("Individual", "Gender", gender, individualId));
 }
Esempio n. 4
0
 public static int UpdateFamilyHusbandId(int familyId, int husbandId)
 {
     return(DBAccessStatic.UpdateTable("Family", "HusbandId", husbandId.ToString(), familyId));
 }
Esempio n. 5
0
 public static int UpdateIndividualPArentFamilyId(int individualId, int parentFamilyId)
 {
     return(DBAccessStatic.UpdateTable("Individual", "ParentFamilyId", parentFamilyId.ToString(), individualId));
 }
Esempio n. 6
0
 public static int UpdateIndividualDiedPlace(int individualId, string diedPlace)
 {
     return(DBAccessStatic.UpdateTable("Individual", "DiedPlace", diedPlace, individualId));
 }
Esempio n. 7
0
 public static int UpdateIndividualBornPlace(int individualId, string bornPlace)
 {
     return(DBAccessStatic.UpdateTable("Individual", "BornPlace", bornPlace, individualId));
 }
Esempio n. 8
0
 public static int UpdateIndividualFirstname(int individualId, string firstname)
 {
     return(DBAccessStatic.UpdateTable("Individual", "Firstname", firstname, individualId));
 }
Esempio n. 9
0
 public static int UpdateIndividualSurname(int individualId, string surname)
 {
     return(DBAccessStatic.UpdateTable("Individual", "Surname", surname, individualId));
 }