source: BMXNET_RPMS_dotNET_UTILITIES-BMX/branch/BMX41000/IHS BMX Framework/IndianHealthService.BMXNet/Sevices/Log.cs@ 1769

Last change on this file since 1769 was 1146, checked in by Sam Habiel, 13 years ago

Initial Import of BMX4

File size: 380 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace IndianHealthService.BMXNet.Services
6{
7 public interface ILog
8 {
9 bool IsLogging { get; set; }
10 void Log(String aClass, String aCategory, params String[] lines);
11 void Log(String aClass, String aCategory, Exception anException, params String[] lines);
12 }
13}
Note: See TracBrowser for help on using the repository browser.