package com.juick.service; /** * Created by vitalyster on 09.12.2016. */ public interface EmailService { boolean verifyAddressByCode(Integer userId, String code); boolean addVerificationCode(Integer userId, String account, String code); boolean deleteEmail(Integer userId, String account); boolean setSubscriptionHour(Integer userId, String account, String hour); }