Projekt

Obecné

Profil

Stáhnout (415 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 24e1c89d Vojtěch Bartička
using Core.Entities;
2
using Models.Documents;
3
using System;
4
using System.Collections.Generic;
5
using System.Linq;
6
using System.Text;
7
using System.Threading.Tasks;
8
9
10
namespace Core.Services.DocumentService
11
{
12
    public interface IDocumentService
13
    {
14
        public void AddDocuments(DocumentAddRequest request, Guid userId);
15
16 42c654f6 Vojtěch Bartička
        public DocumentListResponse GetDocuments(int pageIdnex, int pageSize);
17 24e1c89d Vojtěch Bartička
    }
18
}