17 lines
361 B
C#
17 lines
361 B
C#
|
using Demo.Data.Repository;
|
|||
|
|
|||
|
namespace Demo.Domain.UseCases
|
|||
|
{
|
|||
|
public class GroupUseCase
|
|||
|
{
|
|||
|
private GroupRepositoryImpl _groupRepository;
|
|||
|
|
|||
|
public GroupUseCase(GroupRepositoryImpl groupRepository) // Конструктор
|
|||
|
{
|
|||
|
_groupRepository = groupRepository;
|
|||
|
}
|
|||
|
|
|||
|
// Другие методы
|
|||
|
}
|
|||
|
}
|