///<summary></summary>
 public static void Update(ApptReminderSent apptReminderSent)
 {
     if (RemotingClient.RemotingRole == RemotingRole.ClientWeb)
     {
         Meth.GetVoid(MethodBase.GetCurrentMethod(), apptReminderSent);
         return;
     }
     Crud.ApptReminderSentCrud.Update(apptReminderSent);
 }
 ///<summary></summary>
 public static long Insert(ApptReminderSent apptReminderSent)
 {
     if (RemotingClient.RemotingRole == RemotingRole.ClientWeb)
     {
         apptReminderSent.ApptReminderSentNum = Meth.GetLong(MethodBase.GetCurrentMethod(), apptReminderSent);
         return(apptReminderSent.ApptReminderSentNum);
     }
     return(Crud.ApptReminderSentCrud.Insert(apptReminderSent));
 }