コード例 #1
0
ファイル: RecallTypes.cs プロジェクト: mnisl/OD
		///<summary></summary>
		public static void Update(RecallType recallType) {
			if(RemotingClient.RemotingRole==RemotingRole.ClientWeb) {
				Meth.GetVoid(MethodBase.GetCurrentMethod(),recallType);
				return;
			}
			Crud.RecallTypeCrud.Update(recallType);
		}
コード例 #2
0
ファイル: RecallTypes.cs プロジェクト: mnisl/OD
		///<summary></summary>
		public static long Insert(RecallType recallType) {
			if(RemotingClient.RemotingRole==RemotingRole.ClientWeb) {
				recallType.RecallTypeNum=Meth.GetLong(MethodBase.GetCurrentMethod(),recallType);
				return recallType.RecallTypeNum;
			}
			return Crud.RecallTypeCrud.Insert(recallType);
		}
コード例 #3
0
ファイル: RecallTypes.cs プロジェクト: ChemBrain/OpenDental
 ///<summary></summary>
 public static long Insert(RecallType recallType)
 {
     if (RemotingClient.RemotingRole == RemotingRole.ClientWeb)
     {
         recallType.RecallTypeNum = Meth.GetLong(MethodBase.GetCurrentMethod(), recallType);
         return(recallType.RecallTypeNum);
     }
     return(Crud.RecallTypeCrud.Insert(recallType));
 }
コード例 #4
0
ファイル: RecallTypes.cs プロジェクト: nampn/ODental
 ///<summary></summary>
 public static void Update(RecallType recallType)
 {
     if (RemotingClient.RemotingRole == RemotingRole.ClientWeb)
     {
         Meth.GetVoid(MethodBase.GetCurrentMethod(), recallType);
         return;
     }
     Crud.RecallTypeCrud.Update(recallType);
 }