createcreditcardaccountinterface.java

来自「spring的例子 很实用的」· Java 代码 · 共 27 行

JAVA
27
字号
package springexample.creditcardaccount;

import springexample.creditlinking.CreditLinkingInterface;
import springexample.creditrating.CreditRatingInterface;
import springexample.domain.ICustomer;
import springexample.email.EmailInterface;

public interface CreateCreditCardAccountInterface {

	public CreditLinkingInterface getCreditLinkingInterface();

	public void setCreditLinkingInterface(
			CreditLinkingInterface creditLinkingInterface);

	public CreditRatingInterface getCreditRatingInterface();

	public void setCreditRatingInterface(
			CreditRatingInterface creditRatingInterface);

	public EmailInterface getEmailInterface();

	public void setEmailInterface(EmailInterface emailInterface);

	public void createCreditCardAccount(ICustomer icustomer) throws Exception;

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?