18 lines
654 B
C#
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);
|
|
} |