надо доделать

This commit is contained in:
nezui1
2024-10-28 00:49:35 +04:00
parent f03282c21d
commit 26c76e03d3
41 changed files with 1845 additions and 33 deletions

View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using ProjectCompRepair.Entities;
using System.Text;
using System.Threading.Tasks;
namespace ProjectCompRepair.Repositories;
public interface IMasterRepository
{
IEnumerable<Master> ReadMaster();
Master ReadMasterById(int id);
void CreateMaster(Master Master);
void UpdateMaster(Master master);
void DeleteMaster(int id);
}