24 lines
767 B
C#
24 lines
767 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Threading.Tasks;
|
||
|
using Renis.Database.Models;
|
||
|
using Renis.Repositories;
|
||
|
|
||
|
namespace renis_backend.Services.UserPolises
|
||
|
{
|
||
|
public class UserPolisService : IUserPolisService
|
||
|
{
|
||
|
private readonly IUserPolisRepository _userPolisRepository;
|
||
|
private readonly Logger<UserPolisService> _logger;
|
||
|
public UserPolisService( IUserPolisRepository userPolisRepository, Logger<UserPolisService> logger)
|
||
|
{
|
||
|
_userPolisRepository = userPolisRepository;
|
||
|
_logger = logger;
|
||
|
}
|
||
|
public Task<UserPolis> AddUserPolis(User user, Renis.Database.Models.Polis polis)
|
||
|
{
|
||
|
throw new NotImplementedException();
|
||
|
}
|
||
|
}
|
||
|
}
|