first edit

This commit is contained in:
Курнат Андрей
2026-01-31 16:11:36 +03:00
commit f0e11d6379
148 changed files with 6986 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Text;
using XLIMS.DATA.Models;
namespace XLIMS.CONTRACT
{
public interface ILimsService
{
IGenericRepository<BookSet> Books { get; }
IGenericRepository<DataSet> Datas { get; }
IGenericRepository<DeviceSet> Devices { get; }
IGenericRepository<DivisionSet> Divisions { get; }
IGenericRepository<DocumentSet> Documents { get; }
IGenericRepository<PersonalSet> Personals { get; }
IGenericRepository<Spnmtp> Spnmtps { get; }
IGenericRepository<Spoi> Spois { get; }
IGenericRepository<Tip> Tips { get; }
IGenericRepository<Tprz> Tprzs { get; }
Task<int> SaveChangesAsync();
int SaveChanges();
}
}