25 lines
1.1 KiB
C#
25 lines
1.1 KiB
C#
using CandyHouseContracts.Infrastructure;
|
|
using CandyHouseContracts.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CandyHouseContracts.AdapterContracts.OperationResponses;
|
|
|
|
public class EmployeeOperationResponse : OperationResponse
|
|
{
|
|
public static EmployeeOperationResponse OK(List<EmployeeViewModel> data) => OK<EmployeeOperationResponse, List<EmployeeViewModel>>(data);
|
|
|
|
public static EmployeeOperationResponse OK(EmployeeViewModel data) => OK<EmployeeOperationResponse, EmployeeViewModel>(data);
|
|
|
|
public static EmployeeOperationResponse NoContent() => NoContent<EmployeeOperationResponse>();
|
|
|
|
public static EmployeeOperationResponse NotFound(string message) => NotFound<EmployeeOperationResponse>(message);
|
|
|
|
public static EmployeeOperationResponse BadRequest(string message) => BadRequest<EmployeeOperationResponse>(message);
|
|
|
|
public static EmployeeOperationResponse InternalServerError(string message) => InternalServerError<EmployeeOperationResponse>(message);
|
|
}
|