22 lines
337 B
C#
22 lines
337 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|