presence/Demo/Domain/UseCase/UserUseCase.cs

21 lines
405 B
C#
Raw Normal View History

2024-10-14 11:19:48 +00:00
using Demo.Data.Repository;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Demo.Domain.UseCase
{
public class UserUseCase
{
private UserRepositoryImpl _repositoryImpl;
public UserUseCase(UserRepositoryImpl repositoryImpl)
{
_repositoryImpl = repositoryImpl;
}
}
}