コード例 #1
0
 public IEnumerable <Motor> GetMotorsByCategoryId(long categoryId)
 {
     return(Motors.Where(m => m.Category.Id == categoryId));
 }
コード例 #2
0
 public IEnumerable <Motor> GetMotorsByBrandId(long brandId)
 {
     return(Motors.Where(m => m.Brand.Id == brandId));
 }