﻿/// <reference path="~/Scripts/ByteStorm/_BSC_Interface.js" />

(function(){
	BSC.D.Ws.I = function()
    {
		var list = {};
		return {
			Get:function(guid)
			{
			    if(arguments.length==0) return list;
				return list[guid];
			},
			Add:function(guid,w)
			{
			    list[guid] = w;
			},
			Exists:function(guid)
			{
				return (list[guid]!=null);
			},
			GetList:function()
			{
			    return list;
			}
		};
    }();
})();
