namespace TransportCompanyDataModels.Models
{
public interface ICargoModel : IId
string CargoName { get; }
int Weight { get; }
}