source: Dev/LoggingTool/interfaces/ILoggerLogic.cs @ 5

Last change on this file since 5 was 5, checked in by jkraaijeveld, 14 years ago
File size: 321 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using LoggingTool.models;
6
7namespace LoggingTool.interfaces
8{
9    interface ILoggerLogic
10    {
11        List<LoggerMessage> formatModels();
12
13        void addInput(String input);
14
15        void createModels();
16    }
17}
Note: See TracBrowser for help on using the repository browser.