presence_new/domain/UseCase/IUserUseCase.cs

16 lines
312 B
C#
Raw Permalink Normal View History

2024-12-13 07:21:14 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
2024-12-17 09:13:12 +00:00
using domain.Models.ResponseModels;
2024-12-13 07:21:14 +00:00
using presence.domain.Models;
namespace domain.UseCase
{
public interface IUserUseCase
{
2024-12-17 09:13:12 +00:00
public IEnumerable<UserResponse> GetStudents();
2024-12-13 07:21:14 +00:00
}
}