| 123456789101112131415161718192021 |
- //
- // RADataProvider.h
- // iSales-USAI
- //
- // Created by Rui Zhang on 11/11/21.
- // Copyright © 2021 United Software Applications, Inc. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "NetworkUtils.h"
- #import "RANetwork.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RADataProvider : RANetwork
- +(void)request_editor:(NSString*) request_url params:(NSMutableDictionary*)params completionHandler:(resultHandler)result;
- +(void)request_commoneditor_partialrefresh: (NSMutableDictionary*)params url:(NSString*)url completionHandler:(resultHandler)result;
- +(void)SaveEditor:(NSMutableDictionary*)params completionHandler:(resultHandler)result;
- @end
- NS_ASSUME_NONNULL_END
|