2023-04-01 08:09:51 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankYouBankruptDataModels.Models
|
|
|
|
|
{
|
2023-04-01 12:22:39 +04:00
|
|
|
|
//снятие денег с карты
|
2023-04-01 08:09:51 +04:00
|
|
|
|
public interface IDebitingModel : IId
|
|
|
|
|
{
|
|
|
|
|
int CardId { get; }
|
|
|
|
|
|
|
|
|
|
int Sum { get; }
|
|
|
|
|
|
|
|
|
|
DateTime date { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|