23 lines
558 B
C#
23 lines
558 B
C#
namespace LaaProduction.Personalization.Repositories.Interfaces
|
|
{
|
|
using LaaProduction.Personalization.Models;
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
public interface IEquipmentsRepository
|
|
{
|
|
Int32 Add(PruefmittelPruefung model);
|
|
|
|
PruefmittelPruefung FindById(Int32 pruefmittelId);
|
|
|
|
Int32 Remove(Int32 pruefmittelId);
|
|
|
|
IEnumerable<PruefmittelPruefung> SelectAll();
|
|
|
|
IEnumerable<PruefmittelPruefung> SelectAll(Int32 softwareId);
|
|
|
|
Int32 Update(PruefmittelPruefung model);
|
|
}
|
|
}
|