2024-04-29 18:46:34 +04:00

16 lines
302 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UniversityDataModels
{
public interface ICostModel : IId
{
int EmployeeId { get; }
string NameOfCost { get; }
double Price { get; }
}
}