關於DDD的Repository倉庫需要哪些方法?

brighthas發表於2012-06-30
DDD的倉庫我想到一下方法,還需要哪些方法呢?

function Repo(){}

var r = Repo.prototype;

r.create = function(cb){

};

r.find = function(){
	
};

r.findById = function(id,cb){
	
};

r.removeById = function(){

};

<p class="indent">


這些方法,還需要哪些方法?


更好的寫法應該是,單例比較好。


var repo = {
  find:function(){}
 ,findById:function(){}
 ,removeById:function(){}
 ,create:function(){}
}

<p class="indent">

[該貼被brighthas於2012-06-30 16:56修改過]

相關文章