Files
Backend-Api/0_Framework/Application/Sms/ISmsService.cs
2024-07-05 21:36:15 +03:30

18 lines
654 B
C#

using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace _0_Framework.Application.Sms;
public interface ISmsService
{
void Send(string number, string message);
bool VerifySend(string number, string message);
bool LoginSend(string number, string message);
bool SendAccountsInfo(string number,string fullName, string userName);
Task<ApiResultViewModel> GetByMessageId(int messId);
Task<List<ApiResultViewModel>> GetApiResult(string startDate, string endDate);
string DeliveryStatus(byte? dv);
string DeliveryColorStatus(byte? dv);
string UnixTimeStampToDateTime(int? unixTimeStamp);
}