Esempio n. 1
0
func (order *Order) GetLastModifiedAtFormatted() string {
	return utils.GetFormattedTime(order.LastModifiedAt)
}
Esempio n. 2
0
func (order *Order) GetCreatedAtFormatted() string {
	return utils.GetFormattedTime(order.CreatedAt)
}
Esempio n. 3
0
func (customer *Customer) GetCreatedAtFormatted() string {
	return utils.GetFormattedTime(customer.CreatedAt)
}
Esempio n. 4
0
func (customer *Customer) GetLastModifiedAtFormatted() string {
	return utils.GetFormattedTime(customer.LastModifiedAt)
}
Esempio n. 5
0
func (v *Version) GetFormattedTime() string {
	return utils.GetFormattedTime(v.LastModifiedAt)
}