надо доделать
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user