25 lines
1.2 KiB
C#
25 lines
1.2 KiB
C#
using DigitalData.Core.Contracts.Application;
|
|
|
|
namespace DigitalData.Core.Application
|
|
{
|
|
/// <summary>
|
|
/// Represents the outcome of a service operation, encapsulating the success or failure status,
|
|
/// the data returned by the operation, and any associated messages.
|
|
/// </summary>
|
|
/// <typeparam name="T">The type of data returned by the service operation, if any.</typeparam>
|
|
public class ServiceResult<T> : ServiceMessage, IServiceResult<T>
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the ServiceResult class with specified success status, data, and messages.
|
|
/// </summary>
|
|
/// <param name="data">The data associated with a successful operation.</param>
|
|
/// <param name="isSuccess">Indicates whether the service operation was successful.</param>
|
|
/// <param name="messages">An array of messages related to the operation's outcome.</param>
|
|
public ServiceResult(T? data, bool isSuccess, params string[] messages) : base(isSuccess, messages) => Data = data;
|
|
|
|
/// <summary>
|
|
/// Gets or sets the data resulting from the service operation.
|
|
/// </summary>
|
|
public T? Data { get; set; }
|
|
}
|
|
} |