using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace NetMonitorClient { class ServiceControl { private System.ServiceProcess.ServiceController sc; public ServiceControl(System.ServiceProcess.ServiceController Controller) { this.sc = Controller; } internal void setNetworkAuto() { throw new NotImplementedException(); } internal void setNetworkIp(string ip, string subnet, string gateway) { throw new NotImplementedException(); } internal void setNetworkDNS(string dns) { throw new NotImplementedException(); } internal void setNetworkWINS(string wins) { throw new NotImplementedException(); } } }