init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,19 @@
|
|||
using System.Threading.Tasks;
|
||||
using Kreta.Core.Client.MessageInvoker;
|
||||
using Kreta.Naplo.Domain.V2.Model;
|
||||
using Kreta.Naplo.Domain.V2.Model.Get.Tanar;
|
||||
using Kreta.Naplo.Domain.V2.Service;
|
||||
|
||||
namespace Kreta.Naplo.BusinessLogic.V2.Service
|
||||
{
|
||||
class TanarService : VersionedService, ITanarService
|
||||
{
|
||||
public async Task<ResponseWrapper<ProfilResponse>> GetProfilAsync(ProfilRequest request)
|
||||
{
|
||||
return await GetAsync<ResponseWrapper<ProfilResponse>>("Profil", request);
|
||||
}
|
||||
|
||||
public TanarService(IHttpMessageInvokerFactory invokerFactory) : base(invokerFactory, "Tanar")
|
||||
{ }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue