All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.anaptecs.jeaf.accounting.AccountingBasicDataService Maven / Gradle / Ivy

There is a newer version: 1.24.2
Show newest version
/*
 * anaptecs GmbH, Ricarda-Huch-Str. 71, 72760 Reutlingen, Germany
 *
 * Copyright 2004 - 2019. All rights reserved.
 */
package com.anaptecs.jeaf.accounting;

import javax.validation.Valid;
import javax.validation.constraints.NotNull;

import com.anaptecs.jeaf.core.api.Service;
import com.anaptecs.jeaf.core.api.ServiceObjectID;
// @Something

public interface AccountingBasicDataService extends Service {
  /**
   * @param pType
   * @return {@link ResponsibilityType}
   */
  ResponsibilityType createResponsibilityType( ResponsibilityType pType );

  /**
   * Method creates a new persistent Bank object in the database.
*
* @param pBank Service object containing all the attributes to create a new persistent Bank object. The parameter * must not be null
* @return Bank Service object describing the created bank object. The returned object contains besides the attributes * also the object id of the created persistent bank object. The method never returns null. * * @param pBank * @return {@link Bank} */ Bank createBank( @Valid @NotNull Bank pBank ); /** * @param pPerson * @param pResponsibilityType * @param pBank * @return {@link ServiceObjectID} */ ServiceObjectID createEmployee( Person pPerson, ResponsibilityType pResponsibilityType, Bank pBank ); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy