init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,41 @@
|
|||
using System.Collections.Generic;
|
||||
using Kreta.Client.CoreApi;
|
||||
using Kreta.Client.CoreApi.Request;
|
||||
using Kreta.Client.CoreApi.Response;
|
||||
|
||||
namespace Kreta.Naplo.WebApi.V3.Documentation.MockServices
|
||||
{
|
||||
|
||||
internal class CoreApiClientMock : ICoreApiClient
|
||||
{
|
||||
public DKTFeladatInsertResponse DKTFeladatInsert(DKTFeladatInsertRequest request, int alkalmazottId)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public DKTFeladatResponse DKTFeladatUpdate(DKTFeladatUpdateRequest request, int alkalmazottId)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public DKTFeladatResponse DKTFeladatDelete(DKTFeladatDeleteRequest request)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public EszkozIgenylesCreateResponse EszkozIgenylesInsert(EszkozIgenylesCreateDto request, string intezmenyGuid, int tanevSorszam)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public CoreApiResponse EszkozIgenylesUpdate(EszkozIgenylesUpdateDto request, string intezmenyGuid, int tanevSorszam)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public List<EszkozIgenylesDto> EszkozIgenylesGet(string intezmenyGuid, int tanevSorszam)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
using Kreta.BusinessLogic.Interfaces;
|
||||
using Kreta.Client.FileService.Request;
|
||||
using Kreta.Client.FileService.Response;
|
||||
|
||||
namespace Kreta.Naplo.WebApi.V3.Documentation.MockServices
|
||||
{
|
||||
|
||||
internal class FileServiceHelperMock : IFileServiceHelper
|
||||
{
|
||||
public FileUploadResponse Upload(IFileUploadRequest fileUploadRequest)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public string GetUrl(string intezmenyAzonosito, GetUrlRequest fileDownloadRequest)
|
||||
{
|
||||
return "";
|
||||
}
|
||||
|
||||
public GetFileResponse GetFile(string intezmenyAzonosito, GetUrlRequest fileDownloadRequest)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public bool Delete(string intezmenyAzonosito, FileDeleteRequest fileDeleteRequest)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public FileFinalizeResponseV3 Veglegesites(FileFinalizeRequestV3 fileVeglegesitesRequest)
|
||||
{
|
||||
return new FileFinalizeResponseV3();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue