mirror of https://github.com/dapr/quickstarts.git
27 lines
713 B
C#
27 lines
713 B
C#
// ------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
// ------------------------------------------------------------
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Subtract.Models;
|
|
|
|
namespace Subtract.Controllers
|
|
{
|
|
[Route("[controller]")]
|
|
[ApiController]
|
|
public class SubtractController : ControllerBase
|
|
{
|
|
|
|
//POST: /subtract
|
|
[HttpPost]
|
|
public decimal Subtract(Operands operands)
|
|
{
|
|
return Decimal.Parse(operands.OperandOne) - Decimal.Parse(operands.OperandTwo);
|
|
}
|
|
}
|
|
} |