///<summary></summary>
		public static void Update(OIDInternal oIDInternal) {
			if(RemotingClient.RemotingRole==RemotingRole.ClientWeb) {
				Meth.GetVoid(MethodBase.GetCurrentMethod(),oIDInternal);
				return;
			}
			Crud.OIDInternalCrud.Update(oIDInternal);
		}
Beispiel #2
0
		private int sortOIDsByIDType(OIDInternal a,OIDInternal b) {
			if(a.IDType>b.IDType) {
				return 1;
			}
			if(a.IDType<b.IDType) {
				return -1;
			}
			return 0;//should never happen.
		}
Beispiel #3
0
 ///<summary></summary>
 public static void Update(OIDInternal oIDInternal)
 {
     if (RemotingClient.RemotingRole == RemotingRole.ClientWeb)
     {
         Meth.GetVoid(MethodBase.GetCurrentMethod(), oIDInternal);
         return;
     }
     Crud.OIDInternalCrud.Update(oIDInternal);
 }