fcs-utils/IRepository.cs

61 lines
2.2 KiB
C#
Raw Normal View History

2020-10-19 11:22:06 +02:00
// ***********************************************************************
2022-02-24 11:57:37 +01:00
// Assembly : FCS.Lib.Utility
2020-10-19 11:22:06 +02:00
// Author : FH
// Created : 05-13-2020
//
// Last Modified By : FH
2022-02-24 11:40:38 +01:00
// Last Modified On : 02-24-2022
2020-10-19 11:22:06 +02:00
// ***********************************************************************
// <copyright file="IRepository.cs" company="FCS">
2022-02-24 10:11:45 +01:00
// Copyright (C) 2022 FCS Frede's Computer Services.
// This program is free software: you can redistribute it and/or modify
2022-03-14 14:23:33 +01:00
// it under the terms of the Affero GNU General Public License as
2022-02-24 10:11:45 +01:00
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
2022-01-01 16:57:59 +01:00
//
2022-02-24 10:11:45 +01:00
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2022-03-14 14:23:33 +01:00
// Affero GNU General Public License for more details.
2022-01-01 16:57:59 +01:00
//
2022-03-14 14:23:33 +01:00
// You should have received a copy of the Affero GNU General Public License
2022-02-24 14:00:27 +01:00
// along with this program. If not, see [https://www.gnu.org/licenses/agpl-3.0.en.html]
2022-02-24 10:11:45 +01:00
// </copyright>
// <summary></summary>
2020-10-19 11:22:06 +02:00
// ***********************************************************************
2022-02-24 11:40:38 +01:00
namespace FCS.Lib.Utility
2020-10-19 11:22:06 +02:00
{
/// <summary>
2022-02-04 08:39:06 +01:00
/// Interface IRepository
2020-10-19 11:22:06 +02:00
/// </summary>
/// <typeparam name="T"></typeparam>
/// <typeparam name="TKey">The type of the TKey.</typeparam>
public interface IRepository<T, in TKey> where T : class
{
/// <summary>
2021-11-06 11:16:18 +01:00
/// Gets the specified identifier.
2020-10-19 11:22:06 +02:00
/// </summary>
/// <param name="id">The identifier.</param>
/// <returns>T.</returns>
T GetById(TKey id);
/// <summary>
2021-11-06 11:16:18 +01:00
/// Creates the specified entity.
2020-10-19 11:22:06 +02:00
/// </summary>
/// <param name="entity">The entity.</param>
void Create(T entity);
/// <summary>
2021-11-06 11:16:18 +01:00
/// Updates the specified entity.
2020-10-19 11:22:06 +02:00
/// </summary>
/// <param name="entity">The entity.</param>
void Update(T entity);
/// <summary>
2021-11-06 11:16:18 +01:00
/// Deletes the specified identifier.
2020-10-19 11:22:06 +02:00
/// </summary>
/// <param name="id">The identifier.</param>
void Delete(TKey id);
}
}