~colinwinning/dbversion/cmdtimeout

« back to all changes in this revision

Viewing changes to src/DatabaseVersion.Console/IMessageService.cs

  • Committer: Adam Connelly
  • Date: 2011-09-11 18:56:45 UTC
  • mfrom: (28.1.3 help-command)
  • Revision ID: adam.rpconnelly@gmail.com-20110911185645-m9xlobxjho9jengt
Merging in the code for the help command.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
    /// </summary>
6
6
    public interface IMessageService
7
7
    {
 
8
        /// <summary>
 
9
        /// Writes an empty line.
 
10
        /// </summary>
 
11
        void WriteLine();
 
12
 
 
13
        /// <summary>
 
14
        /// Writes the specified message.
 
15
        /// </summary>
 
16
        /// <param name='message'>
 
17
        /// The message to write.
 
18
        /// </param>
8
19
        void WriteLine(string message);
9
20
    }
10
21
}