Sha256: b73b69eee2cedd3ce4a8871fbc53e61807601b3b014de2b0cd2165a5b1b8c76e
Contents?: true
Size: 684 Bytes
Versions: 28
Compression:
Stored size: 684 Bytes
Contents
// // Delete<%= @class_name %>Command.m // <%= @project_name %> // // Created by <%= @developer.capitalize %> on <%= @created_on %> // Copyright(c) <%= Time.now.year %>, All rights reserved. // #import "Delete<%= @class_name %>Command.h" #import "<%= @class_name %>Proxy.h" #import "<%= @class_name %>VO.h" @implementation Delete<%= @class_name %>Command -(void)execute:(id<INotification>)notification { <%= @class_name %>Proxy *<%= @project_name %>Proxy = (<%= @class_name %>Proxy *)[facade retrieveProxy:[<%= @class_name %>Proxy NAME]]; <%= @class_name %>VO *<%= @project_name %>VO = [notification body]; [<%= @project_name %>Proxy delete:<%= @project_name %>VO]; } @end
Version data entries
28 entries across 28 versions & 1 rubygems