/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.essar.mes.service.framework;

/**
 *
 * @author dhaval
 */
public interface ServiceLogger {

    void logService(Service service);

    void logResult(Service service);

    void logServiceValidation(Service service);

    void logResultValidation(Service service);
}
