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 data) => OK>(data); public static EmployeeOperationResponse OK(EmployeeViewModel data) => OK(data); public static EmployeeOperationResponse NoContent() => NoContent(); public static EmployeeOperationResponse NotFound(string message) => NotFound(message); public static EmployeeOperationResponse BadRequest(string message) => BadRequest(message); public static EmployeeOperationResponse InternalServerError(string message) => InternalServerError(message); }