----- CAPITULO 5 -------


Ejemplo numero 1

Codigo de Ejercicio:

  • Creacion de Clases y funciones
  • 
    //
    //  Customer.swift
    //  BookStore
    //
    //  Jehovani de Jesus Chavez Segovia 2561842011
    //
    // clases
    
    import Foundation
    
    class Customer {
        
        var firstName = ""
        var lastName = ""
        var addressLine1 = ""
         var addressLine2 = ""
        var city = ""
        var state = ""
        var zip = ""
        var phoneNumber = ""
        var emailAddress = ""
        var favoriteGenre = ""
        
        
       func listPurchaseHistory() -> [String] {
            
            return ["Purchase 1","Purchase 2"]
        }
       
    }