コード例 #1
0
ファイル: FloorService.cs プロジェクト: OanaLuca/ParkingApp
 public void Delete(FloorEntity floor)
 {
     if (floor.ID != 0)
     {
         _floorRepository.Detele(floor.ID);
     }
     else
     {
         throw new Exception("Nothing to delete!");
     }
 }