// controller really doesn't have much to do at the moment, but it may be needed later 
function Controller(model){
this._model = model;
}
Controller.prototype.send = function(snapShotObj){
this._snapShotObj = snapShotObj;
this._model.aqquire(this._snapShotObj)
}
