mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-16 06:51:27 +00:00
22 lines
358 B
Swift
22 lines
358 B
Swift
//
|
|
// File.swift
|
|
//
|
|
//
|
|
// Created by Manali Mogre on 17/08/2020.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
protocol ItemSellInUpdater: CustomisedItem{
|
|
func reduceSellInDays(by days: Int)
|
|
}
|
|
|
|
extension ItemSellInUpdater {
|
|
var isSellInDatePassed: Bool{
|
|
return item.sellIn < 0
|
|
}
|
|
func reduceSellInDays(by days: Int) {
|
|
item.sellIn -= days
|
|
}
|
|
}
|