21 lines
532 B
C#
21 lines
532 B
C#
|
using BankYouBankruptDataModels.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace BankYouBankruptDatabaseImplement.Models
|
|||
|
{
|
|||
|
public class Debiting : IDebitingModel
|
|||
|
{
|
|||
|
public int CardId => throw new NotImplementedException();
|
|||
|
|
|||
|
public int Sum => throw new NotImplementedException();
|
|||
|
|
|||
|
public DateTime date => throw new NotImplementedException();
|
|||
|
|
|||
|
public int Id => throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|