Ejemplo n.º 1
0
 public ShopReview(User user, Shop shop, DateTime date, int sGeneral, string eGeneral, int sDelivery)
     : base(user, shop, date)
 {
     SGeneral = sGeneral;
     EGeneral = eGeneral;
     SDelivery = sDelivery;
 }
Ejemplo n.º 2
0
 protected Review(int id, User user, Shop shop, DateTime date)
 {
     ID = id;
     User = user;
     Shop = shop;
     Date = date;
 }
Ejemplo n.º 3
0
 public ShopPrice(Shop shop, Product product, double price, string productURL)
 {
     Shop = shop;
     Product = product;
     Price = price;
     ProductURL = productURL;
 }
Ejemplo n.º 4
0
 public ShopReview(User user, Shop shop, DateTime date, int sGeneral, string eGeneral, int sDelivery,
     int sCustomerService)
     : base(user, shop, date)
 {
     SGeneral = sGeneral;
     EGeneral = eGeneral;
     SDelivery = sDelivery;
     SCustomerService = sCustomerService;
 }
Ejemplo n.º 5
0
 public ShopReview(User user, Shop shop, DateTime date, int sGeneral, string eGeneral)
     : base(user, shop, date)
 {
     SGeneral = sGeneral;
     EGeneral = eGeneral;
 }
Ejemplo n.º 6
0
 protected Review(User user, Shop shop, DateTime date)
 {
     User = user;
     Shop = shop;
     Date = date;
 }
Ejemplo n.º 7
0
 protected Review(User user, Shop shop, DateTime date)
 {
     User = user;
     Shop = shop;
     Date = date;
 }