Skip to content

Instantly share code, notes, and snippets.

@biloshkurskyi-ss
Last active January 30, 2018 16:25
Show Gist options
  • Save biloshkurskyi-ss/b43f68c2583f80c1610748da23b85175 to your computer and use it in GitHub Desktop.
Save biloshkurskyi-ss/b43f68c2583f80c1610748da23b85175 to your computer and use it in GitHub Desktop.
SWIFT.Solid.SingleResponsobility.Good
protocol OrderType {
var products: [ProductType] { get }
func calculateTotalSum()
func getItems()
func add(_ product: ProductType)
func remove(_ product: ProductType)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment