Ejemplo n.º 1
0
 public ServiceBase(ServiceConfig config)
 {
     this.serviceConfig = config;
     this.init();
 }
Ejemplo n.º 2
0
 public UserService(ServiceConfig config) : base(config)
 {
 }
Ejemplo n.º 3
0
 public ItmeServiceBase(ServiceConfig config, long SiteId) : base(config)
 {
     this.SiteId = SiteId;
     this.L      = LoggerManager.GetInstance().Logger;
 }