package $safeprojectname$;

import System.Collections.Generic.*;
import System.ComponentModel.*;
import System.Data.*;
import System.Diagnostics.*;
import System.ServiceProcess.*;

/**
 * Summary description for Service1.
 */
public class Service1 extends System.ServiceProcess.ServiceBase
{
    /**
     * Required designer variable.
     */
    private System.ComponentModel.IContainer components;

    public Service1()
    {
        //
        // This call is required by the Windows.Forms Component Designer.
        //
        InitializeComponent();

        //
        // TODO: Add any initialization after the InitComponent call
        //
    }

    #region Windows Form Designer generated code
    /**
     * Clean up any resources being used.
     */
    protected void Dispose(boolean disposing)
    {
        if (disposing)
        {
            if (components != null)
            {
                components.Dispose();
            }
        }
        super.Dispose(disposing);
    }

    /**
     * Required method for Designer support - do not modify 
     * the contents of this method with the code editor.
     */
    private void InitializeComponent()
    {
        components = new System.ComponentModel.Container();
        this.set_ServiceName("Service1");
    }
    #endregion

    /**
     * Set things in motion so your service can do its work.
     */
    protected void OnStart(String[] args)
    {
        //
        // TODO: Add code here to start your service.
        //
    }

    /**
     * Stop this service.
     */
    protected void OnStop()
    {
        //
        // TODO: Add code here to perform any tear-down necessary to stop your service.
        //
    }
}
