Beispiel #1
0
 /// <summary>
 /// GET api/Banks/GetChanges
 /// Method returns list of banks, that were changed.
 /// </summary>
 public RowsResultWrapper <Bank> Changes(ChangeFilter filter)
 {
     return(Get <RowsResultWrapper <Bank> >(ResourceUrl + "/GetChanges", filter));
 }
Beispiel #2
0
 /// <summary>
 /// GET api/PaymentOptions/GetChanges
 /// Method returns list of payment options, that were changed.
 /// </summary>
 public RowsResultWrapper <PaymentOption> Changes(ChangeFilter filter)
 {
     return(Get <RowsResultWrapper <PaymentOption> >(ResourceUrl + "/GetChanges", filter));
 }
 public static extern bool ChangeWindowMessageFilterEx(IntPtr hWnd, WM msg, ChangeWindowMessageFilterExAction action, ref ChangeFilter changeInfo);
Beispiel #4
0
 /// <summary>
 /// GET api/ConstantSymbols/GetChanges
 /// Method returns list of constant symbols, that were changed.
 /// </summary>
 public RowsResultWrapper <ConstantSymbol> Changes(ChangeFilter filter)
 {
     return(Get <RowsResultWrapper <ConstantSymbol> >(ResourceUrl + "/GetChanges", filter));
 }
Beispiel #5
0
 /// <summary>
 /// GET api/System/GetCodeBooksChanges
 /// Provides information about system tables changes.
 /// </summary>
 public CodeBooksChanges CodeBookChanges(ChangeFilter filter)
 {
     return(Get <CodeBooksChanges>(ResourceUrl + "/GetCodeBooksChanges", filter));
 }