예제 #1
0
 public WebNotifyService()
 {
     Instance = this;
     connections.Indexes.Add(WebNotifyConnectionUserInvoker.Instance);
     jsonSettings = new JsonSerializerSettings {
         ContractResolver = DBItemContractResolver.Instance
     };
     jsonSettings.Converters.Add(new Newtonsoft.Json.Converters.StringEnumConverter());
 }
예제 #2
0
 public WebNotifyController(WebNotifyService service)
 {
     Service = service;
 }