Click here to Skip to main content
15,885,366 members
Articles / Web Development / ASP.NET

Race to Linux - Race 2: Time Tracker Starter Kit

Rate me:
Please Sign up or sign in to vote.
4.25/5 (5 votes)
26 Sep 20051 min read 40.3K   274   16  
Time Tracker Starter Kit port to Linux using Mono and FireBird
<html><head><link rel=stylesheet href=style.css></head><body><div class=SourcePanel style='font-size:12'><pre style='background-color:white'>
<font color= "blue">using</font> System;
<font color= "blue"></font>
<font color= "blue">namespace</font> ASPNET.StarterKit.TimeTracker.BusinessLogicLayer
<font color= "blue"></font>{
<font color= "green">    //*********************************************************************</font>
<font color= "green">    //</font>
<font color= "green">    // TabItem Class</font>
<font color= "green">    //</font>
<font color= "green">    // TabItem class used to represent one tab in the Banner.ascx user control</font>
<font color= "green">    // or one tab in the AdminTabs.ascx user control.  A class is used instead</font>
<font color= "green">    // of a struct so a parameterized constructor could be used.</font>
<font color= "green">    //</font>
<font color= "green">    //*********************************************************************</font>
<font color= "blue"></font>
<font color= "blue">    public class</font> TabItem
<font color= "blue">    </font>{
<font color= "blue">        private </font>string _name;
<font color= "blue">        private </font>string _path;
<font color= "blue"></font>
<font color= "blue">        public </font>TabItem(string newName, string newPath)
<font color= "blue">        </font>{
<font color= "blue">            </font>_name = newName;
<font color= "blue">            </font>_path = newPath;
<font color= "blue">        </font>}
<font color= "blue"></font>
<font color= "blue">        public </font>string Name
<font color= "blue">        </font>{
<font color= "blue">            get</font> { return _name;}
<font color= "blue">            set</font> { _name = value;}
<font color= "blue">        </font>}
<font color= "blue"></font>
<font color= "blue">        public </font>string Path 
<font color= "blue">        </font>{
<font color= "blue">            get</font> { return _path; }
<font color= "blue">            set</font> { _path = value; }
<font color= "blue">        </font>}
<font color= "blue">    </font>}
<font color= "blue"></font>}
</pre>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Uruguay Uruguay
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions