CourseWork_CarCenter/CarCenter/CarCenterDataModels/Models/ICarModel.cs

16 lines
310 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarCenterDataModels.Models
{
public interface ICarModel : IId
{
string BrandCar { get; }
string Model { get; }
int AdministratorId { get; }
}
}