Merge branch 'main' of http://student.git.athene.tech/shadowik/CourseWork_BankYouBankrupt
This commit is contained in:
commit
8d4ac1ba52
@ -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