コード例 #1
0
 //Implement interface method
 public Account Get(int id)
 {
     //some logic or just the call to the unit of work
     return(unitofWork.Get(id));
 }