package com.hepl.tunefortwo.service;

import com.hepl.tunefortwo.entity.DeliveryDate;

import jakarta.mail.MessagingException;

public interface DeliveryDateService {
	public DeliveryDate addCollection();
	public void updateDeliveryDate(String estimatedDays, Double priceForTotalDays, Double pricePerDay) throws MessagingException;
	public DeliveryDate getDeliveryDateData();

}
