public IService getService(service_type type)
        {
            if (repositoy == null)
            {
                lazyinit();
            }

            return repositoy.getServiceEntity(type);
        }
 public ServiceResponse getServiceEntity(service_type type)
 {
     return repositoy[type];
 }
 public void storeServiceEntity(service_type type, ServiceResponse response_entity)
 {
     repositoy.Add(type, response_entity);
 }
 public IService getServiceEntity(service_type type)
 {
     return repositoy[type];
 }
 public void storeServiceEntity(service_type type, IService service_entity)
 {
     repositoy.Add(type, service_entity);
 }