Esempio 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;
 }
Esempio n. 2
0
 protected Review(int id, User user, Shop shop, DateTime date)
 {
     ID = id;
     User = user;
     Shop = shop;
     Date = date;
 }
Esempio n. 3
0
 public ShopPrice(Shop shop, Product product, double price, string productURL)
 {
     Shop = shop;
     Product = product;
     Price = price;
     ProductURL = productURL;
 }
Esempio 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;
 }
Esempio n. 5
0
 public ShopReview(User user, Shop shop, DateTime date, int sGeneral, string eGeneral)
     : base(user, shop, date)
 {
     SGeneral = sGeneral;
     EGeneral = eGeneral;
 }
Esempio n. 6
0
 protected Review(User user, Shop shop, DateTime date)
 {
     User = user;
     Shop = shop;
     Date = date;
 }
Esempio n. 7
0
 protected Review(User user, Shop shop, DateTime date)
 {
     User = user;
     Shop = shop;
     Date = date;
 }