コード例 #1
0
 public bool Update(Registrations registration)
 {
     try
     {
         RegistrationDAL registartionDAL = new RegistrationDAL();
         return(registartionDAL.Update(registration));
     }
     catch (Exception)
     {
         throw;
     }
 }
コード例 #2
0
ファイル: Registration.cs プロジェクト: zPepe/ptGym-UWP-MVVM
 public bool Update()
 {
     return(RegistrationDAL.Update(this));
 }