CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopDataModels/Models/IExpensesModel.cs
Илья Федотов ead38d06d3 Expenses contracts
2024-05-19 19:18:06 +04:00

14 lines
274 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopDataModels.Models {
public interface IExpensesModel {
int ClientID { get; }
int Sum { get; }
int OrderCount { get; }
}
}