Ejemplo n.º 1
0
 public static System.Collections.Generic.List <BLoggingParametersStruct> Single(EBLoggingServiceLogType _LogType, string _Message)
 {
     return(new System.Collections.Generic.List <BLoggingParametersStruct>()
     {
         new BLoggingParametersStruct(_LogType, _Message)
     });
 }
Ejemplo n.º 2
0
 public BLoggingParametersStruct(EBLoggingServiceLogType _LogType, string _Message)
 {
     LogType = _LogType;
     Message = _Message;
 }