Files
ASP.NET/content/01-Introductory-Sessions/Session05/Projects/OOP/SMSSender.cs
T
2025-07-18 14:47:22 +03:30

17 lines
294 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OOP
{
public class SMSSender : ISender
{
public void Send(string to)
{
Console.WriteLine("Sent Mail by SMS");
}
}
}