26 lines
877 B
C#
26 lines
877 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Threading.Tasks;
|
|
using Posechaemost.Data.LocalData.Entity;
|
|
using Posechaemost.Data.Repository;
|
|
using Posechaemost.Domain.Models;
|
|
|
|
namespace Posechaemost.Domain.UseCase
|
|
{
|
|
public class UseCasePresence
|
|
{
|
|
private readonly PresenceRepositoryImpl _repositoryPresenceImpl;
|
|
private readonly UserRepositoryImpl _repositoryUserImpl;
|
|
private readonly GroupRepositoryImpl _repositoryGroupImpl;
|
|
|
|
public UseCasePresence(PresenceRepositoryImpl repositoryImpl, UserRepositoryImpl userRepositoryImpl, GroupRepositoryImpl groupRepositoryImpl) {
|
|
_repositoryPresenceImpl = repositoryImpl;
|
|
_repositoryUserImpl = userRepositoryImpl;
|
|
_repositoryGroupImpl = groupRepositoryImpl;
|
|
}
|
|
|
|
|
|
}
|
|
} |