Exemple #1
0
        //public string Status { get; set; }

        public Jewelry()
        {
            Name       = "";
            VenderCode = "";
            Type       = new TypeOfJewerly();
            Kernel     = new Kernel();
            Basis      = new Basis();
            Brand      = "";
            Image      = "";
        }
Exemple #2
0
 public Jewelry(string vc, TypeOfJewerly type, Kernel k, Basis b, string brand, double c, string im)
 {
     VenderCode   = vc;
     Type         = type;
     Kernel       = k;
     Basis        = b;
     Brand        = brand;
     Complexity   = c;
     Image        = im;
     JewelryPrice = 0;
 }