Clients Models
This commit is contained in:
parent
a346034009
commit
ff2387ce9b
@ -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; }
|
||||||
|
}
|
||||||
|
}
|
@ -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; }
|
||||||
|
}
|
||||||
|
}
|
@ -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; }
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user