Package com.zycus.dotproject.factory

Source Code of com.zycus.dotproject.factory.DepartmentManagerFactory

package com.zycus.dotproject.factory;

import com.zycus.dotproject.api.IDepartmentManager;
import com.zycus.dotproject.impl.DepartmentManagerImpl;

public class DepartmentManagerFactory {

  public static IDepartmentManager getDepartmentManager() {
    return new DepartmentManagerImpl();
  }
}
TOP

Related Classes of com.zycus.dotproject.factory.DepartmentManagerFactory

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.