init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,20 @@
|
|||
using System.Collections.Generic;
|
||||
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 IskolaorService : VersionedService, IIskolaorService
|
||||
{
|
||||
public IskolaorService(IHttpMessageInvokerFactory invokerFactory) : base(invokerFactory, "")
|
||||
{
|
||||
}
|
||||
public async Task<ResponseWrapper<List<IskolaorResponse>>> GetIskolaorAsync(IskolaorRequest request)
|
||||
{
|
||||
return await GetAsync<ResponseWrapper<List<IskolaorResponse>>>("Iskolaor", request);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue