//
//  VFYIDGuideProtocol.h
//  Verif-y
//
//  Created by Ashok Goil on 22/09/20.
//

#import <Foundation/Foundation.h>
#import "Utilities.h"
#import "VFYIDSuccess.h"

@protocol VFYIDGuideProtocol <NSObject>

- (void) callFrom:(NSString*)controllerName;
- (void) callClose:(comeFromViewController)controllerName;
- (void) callClose:(comeFromViewController)controllerName PassValue:(id)passValue;
- (void) callBackFromPopupClose:(popupCallFromMethod)methodName PassValue:(id)passValue;

@end

