Sha256: 1e1e43a162c08440123727900cf3c3de31330288c84c33dacc97fd96da14d837

Contents?: true

Size: 638 Bytes

Versions: 2

Compression:

Stored size: 638 Bytes

Contents

//
//  Get<%= @class_name %>sCommand.h
//  PureMVC_ObjectiveC
//
//  Created by <%= @developer.capitalize %> on <%= @created_on %>
//  Copyright(c) <%= Time.now.year %>, All rights reserved.
//

#import "Get<%= @class_name %>sCommand.h"
#import "ApplicationFacade.h"
#import "<%= @class_name %>Proxy.h"

@implementation Get<%= @class_name %>sCommand

-(void)execute:(id<INotification>)notification {
	<%= @class_name %>Proxy *<%= @project_name %>Proxy = (<%= @class_name %>Proxy *)[facade retrieveProxy:[<%= @class_name %>Proxy NAME]];
	[facade sendNotification:Get<%= @class_name %>sSuccess body:<%= @project_name %>Proxy.data];
}

@end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
appjam-0.1.2 lib/appjam/generators/project/Classes/contacts/controller/GetUsersCommand.m.tt
appjam-0.1.1 lib/appjam/generators/project/Classes/contacts/controller/GetUsersCommand.m.tt