Subversion Repositories SmartDukaan

Rev

Rev 25634 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
25489 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
3
import java.time.LocalDateTime;
4
 
5
public class DateRangeModel {
6
	LocalDateTime startDate;
7
	LocalDateTime endDate;
8
 
9
	public LocalDateTime getStartDate() {
10
		return startDate;
11
	}
12
 
13
	public void setStartDate(LocalDateTime startDate) {
14
		this.startDate = startDate;
15
	}
16
 
17
	public LocalDateTime getEndDate() {
18
		return endDate;
19
	}
20
 
21
	public void setEndDate(LocalDateTime endDate) {
22
		this.endDate = endDate;
23
	}
24
 
25
}