BookingCommentDao.java 168 B

12345678
  1. package com.happy.dao;
  2. import com.happy.Model.BookingComment;
  3. public interface BookingCommentDao {
  4. String insertBookingComment(BookingComment bookingComment);
  5. }