Coverage Summary for Class: CustomerService (org.softuni.cardealer.service)

Class
CustomerService


1 package org.softuni.cardealer.service; 2  3 import org.softuni.cardealer.domain.models.service.CustomerServiceModel; 4  5 public interface CustomerService { 6  7  CustomerServiceModel saveCustomer(CustomerServiceModel customerServiceModel); 8  9  CustomerServiceModel editCustomer(CustomerServiceModel customerServiceModel); 10  11  CustomerServiceModel deleteCustomer(String id); 12  13  CustomerServiceModel findCustomerById(String id); 14 }