Ana içeriğe geç

CreateRepository

Aşağıdaki kodlar kullanılarak Doküman Yönetimi'nde, yeni bir Repository (Depo) oluşturulabilir.

Gerekli Kütüphaneler

using System;
using System.Collections.Generic;
using Bimser.CSP.FormControls.Common;
using Bimser.CSP.FormControls.Controls;
using Bimser.CSP.FormControls.Events;
using Bimser.Synergy.Entities.Shared.Business.Objects;
using Bimser.Synergy.ServiceAPI;
using Bimser.Synergy.ServiceAPI.Models.Authentication;
using Bimser.Synergy.ServiceAPI.Models.Form;
using Newtonsoft.Json;
using Bimser.Synergy.Entities.DocumentManagement.Business.DTOs.Requests;

Kodlar

       ServiceApi.DocumentManagement.CreateRepository(
new CreateRepositoryRequest(
new Dictionary<string, string>{{"tr-TR","newRepositoryName"}},
new Dictionary<string, string>{{"tr-TR","newRepositoryDescription"}}
)
);