ronanrodrigo/my-customers

View on GitHub
MyCustomers/Views/UITableViewCellExtension.swift

Summary

Maintainability
A
0 mins
Test Coverage
import Foundation
import UIKit
import MyCustomersCore

extension UITableViewCell {

    func show(customer: Customer) {
        textLabel?.text = customer.name
        detailTextLabel?.text = customer.email
    }

}