コード例 #1
0
 public async Task AddContainer(PhysicalDocumentContainer container)
 {
     dbContext.Add(container);
     await dbContext.SaveChangesAsync();
 }
コード例 #2
0
 public async Task AddPhysicalDocument(PhysicalDocument physicalDocument)
 {
     dbContext.Add(physicalDocument);
     await dbContext.SaveChangesAsync();
 }
コード例 #3
0
 public async Task AddProperty(Property property)
 {
     dmsDbContext.Add <Property>(property);
     await dmsDbContext.SaveChangesAsync();
 }
コード例 #4
0
 public async Task AddCategory(Category category)
 {
     dmsDbContext.Add <Category>(category);
     await dmsDbContext.SaveChangesAsync();
 }
コード例 #5
0
 public async Task AddPropertyField(PropertyField propertyField)
 {
     dmsDbContext.Add <PropertyField>(propertyField);
     await dmsDbContext.SaveChangesAsync();
 }
コード例 #6
0
 public async Task AddFile(File file)
 {
     dmsDbContext.Add <File>(file);
     await dmsDbContext.SaveChangesAsync();
 }
コード例 #7
0
 public async Task AddCategoryDocument(CategoryDocument categoryDocument)
 {
     dmsDbContext.Add <CategoryDocument>(categoryDocument);
     await dmsDbContext.SaveChangesAsync();
 }
コード例 #8
0
 public async Task AddDocumentType(DocumentType documentType)
 {
     dmsDbContext.Add <DocumentType>(documentType);
     await dmsDbContext.SaveChangesAsync();
 }
コード例 #9
0
 public async Task AddDocument(Document document)
 {
     dmsDbContext.Add <Document>(document);
     await dmsDbContext.SaveChangesAsync();
 }
コード例 #10
0
 public async Task AddPropertyValue(PropertyValue propertyValue)
 {
     dmsDbContext.Add <PropertyValue>(propertyValue);
     await dmsDbContext.SaveChangesAsync();
 }