This commit is contained in:
Programmist73 2023-04-01 12:11:21 +04:00
commit 8d4ac1ba52
3 changed files with 55 additions and 0 deletions

View File

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankYouBankruptDataModels.Models
{
public interface ICreditingModel : IId
{
int CardId { get; }
int Sum { get; }
DateTime date { get; }
}
}

View File

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankYouBankruptDataModels.Models
{
public interface IDebitingModel : IId
{
int CardId { get; }
int Sum { get; }
DateTime date { get; }
}
}

View File

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankYouBankruptDataModels.Models
{
public interface ICardModel : IId
{
int ClientID { get; }
int AccountId { get; }
string Number { get; }
string CVC { get; }
DateTime Period { get; }
}
}