static void Main()
        {
#if  DEBUG
            AttachmentsDownloader ad = new AttachmentsDownloader();
            ad.OnDebug();
#else
            ServiceBase[] ServicesToRun;
            ServicesToRun = new ServiceBase[]
            {
                new AttachmentsDownloader()
            };
            ServiceBase.Run(ServicesToRun);
#endif
        }
        static void Main()
        {

#if  DEBUG
            AttachmentsDownloader ad = new AttachmentsDownloader();
            ad.OnDebug();
#else 
            ServiceBase[] ServicesToRun;
            ServicesToRun = new ServiceBase[] 
			{ 
				new AttachmentsDownloader() 
			};
            ServiceBase.Run(ServicesToRun); 
#endif
        }