Package plantilla.service

Source Code of plantilla.service.ApplicationBusinessDelegate

package plantilla.service;

import plantilla.dao.factory.DAOFactory;
import plantilla.service.impl.UsuarioServiceImpl;

public class ApplicationBusinessDelegate {

  public UsuarioService getUsuarioService() {
    // TODO Auto-generated method stub
    return new UsuarioServiceImpl(DAOFactory.Mysql);
  }

}
TOP

Related Classes of plantilla.service.ApplicationBusinessDelegate

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.