RADataProvider.h 680 B

123456789101112131415161718192021
  1. //
  2. // RADataProvider.h
  3. // iSales-USAI
  4. //
  5. // Created by Rui Zhang on 11/11/21.
  6. // Copyright © 2021 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "NetworkUtils.h"
  10. #import "RANetwork.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface RADataProvider : RANetwork
  13. +(void)request_editor:(NSString*) request_url params:(NSMutableDictionary*)params completionHandler:(resultHandler)result;
  14. +(void)request_commoneditor_partialrefresh: (NSMutableDictionary*)params url:(NSString*)url completionHandler:(resultHandler)result;
  15. +(void)SaveEditor:(NSMutableDictionary*)params completionHandler:(resultHandler)result;
  16. @end
  17. NS_ASSUME_NONNULL_END