Exemplo n.º 1
0
 /// <summary>
 /// Creates a new instance of the <c>ServiceUtils</c> class.
 /// </summary>
 public ServiceUtils()
 {
     ProcessUtils = new ProcessUtils();
 }
Exemplo n.º 2
0
 /// <summary>
 /// Creates a new instance of the <c>ServiceUtils</c> class.
 /// </summary>
 /// <param name="processUtils">A reference to the <c>IProcessUtils</c> for managing processes.</param>
 public ServiceUtils(IProcessUtils processUtils)
 {
     ProcessUtils = processUtils;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Creates a new instance of the <c>ServiceUtils</c> class.
 /// </summary>
 public ServiceUtils()
 {
     ProcessUtils = new ProcessUtils();
 }
Exemplo n.º 4
0
 public FileUtils(IProcessUtils processUtils, IXmlUtils xmlUtils)
 {
     _processUtils = processUtils;
     _xmlUtils     = xmlUtils;
 }
Exemplo n.º 5
0
 /// <summary>
 /// Creates a new instance of the <c>ServiceUtils</c> class.
 /// </summary>
 /// <param name="processUtils">A reference to the <c>IProcessUtils</c> for managing processes.</param>
 public ServiceUtils(IProcessUtils processUtils)
 {
     ProcessUtils = processUtils;
 }