프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

hytos / ID2.Manager / ID2.Manager.Controller / Controllers / DocumentController.cs @ 709c1971

이력 | 보기 | 이력해설 | 다운로드 (838 Bytes)

1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Threading.Tasks;
6

    
7
using ID2.Manager.Data.Models;
8
using ID2.Manager.Dapper.Repository;
9

    
10
namespace ID2.Manager.Controller.Controllers
11
{
12
    public class DocumentController : BaseController
13
    {
14
        public IEnumerable<Documents> GetAllDocuments()
15
        {
16
            using (DocumentRepository rep = new DocumentRepository(this._DbConnectionStr))
17
            {
18
                return rep.GetAllDocuments();
19
            }
20
        }
21

    
22
        public bool SetDocumentData(List<Documents> docList, List<Documents> delDocList)
23
        {
24
            using (DocumentRepository rep = new DocumentRepository(this._DbConnectionStr))
25
            {
26
                return rep.SetDocumentData(docList, delDocList);
27
            }
28
        }
29
    }
30
}
클립보드 이미지 추가 (최대 크기: 500 MB)