コード例 #1
0
ファイル: WatchBusiness.cs プロジェクト: ahmadshafiei/Watch
 public List <Models.Watch> GetAllWatches(string searchExp, int?skip, int?take, out int count)
 {
     return(watchRepository.GetAll(out count, null, skip, take, w => w.Id, w => w.Images));
 }