Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 5217 |
amit.gupta |
1 |
package in.shop2020.catalog.dashboard.client;
|
|
|
2 |
|
|
|
3 |
import java.util.Date;
|
|
|
4 |
|
|
|
5 |
public interface ComingSoon {
|
|
|
6 |
public void setComingSoonStartDate(Date date);
|
|
|
7 |
public void setBestDealsText(String bestDealsText);
|
|
|
8 |
public void setExpectedArrivalDate(Date date);
|
|
|
9 |
public String getBestDealsText();
|
|
|
10 |
public Date getComingSoonStartDate();
|
|
|
11 |
public Date getExpectedArrivalDate();
|
|
|
12 |
}
|