blob: 08b1760088e981679f6e815877abe8447057aa08 [file] [log] [blame]
package com.example.g8backend.service;
import com.example.g8backend.dto.ApiResponse;
import com.example.g8backend.entity.UserSignin;
import java.time.LocalDate;
import java.util.List;
public interface ISigningService {
boolean signIn(Long userId);
List<UserSignin> getSigninsByDateRange(Long userId, LocalDate startDate, LocalDate endDate);
}