2 лаба усл

This commit is contained in:
a.puchkina 2024-05-23 23:50:49 +04:00
parent fdce636b56
commit a58eca0ead
2 changed files with 0 additions and 31 deletions

View File

@ -1,16 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using TravelCompanyDataModels.Models;
namespace TravelCompanyContracts.BindingModels
{
public class DeliveryBindingModel : IDeliveryModel
{
public int ShopId { get; set; }
public int TravelId { get; set; }
public int Count { get; set; }
}
}

View File

@ -1,15 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TravelCompanyDataModels.Models
{
public interface IDeliveryModel
{
int ShopId { get; }
int TravelId { get; }
int Count { get; }
}
}