Ejemplo n.º 1
0
 public bool Insert( int PersonExtraId,  string NationalIdType,  string NationalId,  string Gender,  string Religion,  DateTime BirthDate,  string BirthPlace,  string MaritalStatus,  string SpauseName,  string FatherGuardianName,  string FatherGuardianAddress,  string FatherGuardianContactNumber,  string EmergencyContactName,  string EmergencyContactAddress,  string EmergencyContactNumber,  string EmergencyContactEmail,  int SponsorId,  DateTime SponsorStartDate,  DateTime SponsorEndDate,  int SponsorCategoryId,  bool IsGraduateTransfer,  string ReasonForSeekingTransfer,  string LevelRequired,  string OtherInformation)
 {
     PersonExtraDAC personextraComponent = new PersonExtraDAC();
     return personextraComponent.InsertNewPersonExtra( PersonExtraId,  NationalIdType,  NationalId,  Gender,  Religion,  BirthDate,  BirthPlace,  MaritalStatus,  SpauseName,  FatherGuardianName,  FatherGuardianAddress,  FatherGuardianContactNumber,  EmergencyContactName,  EmergencyContactAddress,  EmergencyContactNumber,  EmergencyContactEmail,  SponsorId,  SponsorStartDate,  SponsorEndDate,  SponsorCategoryId,  IsGraduateTransfer,  ReasonForSeekingTransfer,  LevelRequired,  OtherInformation);
 }
Ejemplo n.º 2
0
 public bool Insert(PersonExtra personextra)
 {
     PersonExtraDAC personextraComponent = new PersonExtraDAC();
     return personextraComponent.InsertNewPersonExtra( personextra.PersonExtraId,  personextra.NationalIdType,  personextra.NationalId,  personextra.Gender,  personextra.Religion,  personextra.BirthDate,  personextra.BirthPlace,  personextra.MaritalStatus,  personextra.SpauseName,  personextra.FatherGuardianName,  personextra.FatherGuardianAddress,  personextra.FatherGuardianContactNumber,  personextra.EmergencyContactName,  personextra.EmergencyContactAddress,  personextra.EmergencyContactNumber,  personextra.EmergencyContactEmail,  personextra.SponsorId,  personextra.SponsorStartDate,  personextra.SponsorEndDate,  personextra.SponsorCategoryId,  personextra.IsGraduateTransfer,  personextra.ReasonForSeekingTransfer,  personextra.LevelRequired,  personextra.OtherInformation);
 }