// J E T F I R E W O R K F L O W //=================================================================================== // HelloWorld.txt //=================================================================================== // Copyright (C) 2008 TrackerRealm Corporation // This file is part of Jetfire. // // Jetfire is open software: you can redistribute it and/or modify it under the terms of the // GNU General Public License as published by the Free Software Foundation, version 3 of the License. // // Jetfire is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; // without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. // See the GNU General Public License for more details. // // You should have received a copy of the GNU General Public License along with Jetfire. // If not, see http://www.gnu.org/licenses. // REMOVAL OF THIS NOTICE IS VIOLATION OF THE COPYRIGHT. //=================================================================================== // namespace JetfireApps { // Every software program shows Hello World. public workflow HelloWorld { DateTime creationDateTime; // Constructor public HelloWorld() { creationDateTime = DateTime.Now; } // P R O P E R T I E S public DateTime CreationDateTime { get { return creationDateTime; } } public string Age { get { return "I was created on " + this.CreationDateTime.ToString(); } } } }