Exemplo n.º 1
0
 private static void Main(string[] args)
 {
     GGMApplication.Run(
         applicationClass: typeof(Program)
         , configPath: Path.Combine(Directory.GetCurrentDirectory(), "../../application.cfg")
         , args: args
         , serviceTypes: typeof(DemoService.Service.DemoService));
 }
Exemplo n.º 2
0
 public GGMApplicationTest()
 {
     _application = GGMApplication.Run(
         GetType()
         , "../../../application.cfg"
         , new string[] { }
         , typeof(ConstructorService)
         , typeof(NonConstructorService)
         );
 }
Exemplo n.º 3
0
 static void Main(string[] args)
 {
     GGMApplication.Run(typeof(Program), "./application.cfg", args, typeof(MyWebService));
 }