16 lines
274 B
C#
16 lines
274 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TestAppRuna.Services
|
|
{
|
|
public class MathService : IMathService
|
|
{
|
|
public int Add(int a,int b)
|
|
{
|
|
return a + b;
|
|
}
|
|
}
|
|
}
|