package com.hepl.tunefortwo.service;

import java.util.List;
import java.util.Optional;

import com.hepl.tunefortwo.entity.MixtureMaster;

public interface MixtureMasterService {
	public List<MixtureMaster> getmixtureMasterPrice();
	 MixtureMaster getmixtureMaster(String id);

	public void setmixtureMasterById(Double price, String id);

}
