Exemplo n.º 1
0
        public CartonDetail CreateCartonDetail(int medicineStripCount, DateTime launchDate, string retailerAddress, Medicine medicine)
        {
            if (medicine != null)
            {
                if (medicineStripCount <= 0)
                {
                    throw new Exception("Incorrect strip count. Please check");
                }
                else if (launchDate < DateTime.Now)
                {
                    throw new Exception("Incorrect launch date. Please provide valid value");
                }
                else if (launchDate > medicine.ExpiryDate)
                {
                    throw new Exception("Launch date greater than expiry date. Please check");
                }
                else if (string.IsNullOrEmpty(retailerAddress))
                {
                    throw new Exception("Incorrect retailer address. Please check");
                }

                CartonDetail cartonDetail = new CartonDetail()
                {
                    MedicineStripCount = medicineStripCount,
                    LaunchDate         = launchDate,
                    RetailerAddress    = retailerAddress,
                    Medicine           = medicine,
                    TotalAmount        = medicine.PricePerStrip * medicineStripCount
                };

                return(cartonDetail);
            }
            return(null);
        }
Exemplo n.º 2
0
        public void CartonObjectCreationTest(int medicineStripCount, string launchDate, string retailerAddress)
        {
            CartonDetail c = ObjMainProgram.CreateCartonDetail(medicineStripCount, DateTime.Parse(launchDate), retailerAddress, this.m);

            Assert.That(c.MedicineStripCount, Is.EqualTo(medicineStripCount));
            Assert.That(c.LaunchDate, Is.EqualTo(DateTime.Parse(launchDate)));
            Assert.That(c.RetailerAddress, Is.EqualTo(retailerAddress));
            Assert.That(c.Medicine, Is.EqualTo(this.m));
        }
Exemplo n.º 3
0
 public void CartonExceptionsTest(int medicineStripCount, string launchDate, string retailerAddress)
 {
     try
     {
         CartonDetail c = ObjMainProgram.CreateCartonDetail(medicineStripCount, DateTime.Parse(launchDate), retailerAddress, this.m);
     }
     catch (Exception ex)
     {
         Assert.Pass(ex.Message.ToString());
     }
 }
        public void CreateCartonDetail_IfNullMedicineObjectISPassed_Exception(int medicineStripCount, DateTime launchDate, string retailerAddress, int n)
        {
            Program  p = new Program();
            Medicine m;

            m = GetMedicineObject(n);

            CartonDetail res = p.CreateCartonDetail(medicineStripCount, launchDate, retailerAddress, m);

            Assert.That(res, Is.EqualTo(null));
        }
        public void CartonDetail_Called_ObjectCreated(int medicineStripCount, DateTime launchDate, string retailerAddress, int n)
        {
            Program  p = new Program();
            Medicine m;

            m = GetMedicineObject(n);

            CartonDetail result = p.CreateCartonDetail(medicineStripCount, launchDate, retailerAddress, m);

            Assert.That(result.MedicineStripCount, Is.EqualTo(medicineStripCount));
            Assert.That(result.RetailerAddress, Is.EqualTo(retailerAddress));
            Assert.That(result.LaunchDate, Is.EqualTo(launchDate));
            Assert.That(result.Medicine, Is.EqualTo(m));
        }
Exemplo n.º 6
0
        static void Main(string[] args)
        {
            Program  objMainProgram = new Program();
            Medicine medicine       = new Medicine();

            Console.Write("**********************************");
            Console.WriteLine();
            Console.Write("Generic medicine application");
            Console.WriteLine();
            Console.Write("**********************************");
            Console.WriteLine();
            try
            {
                #region Create medicine detail
                string   medicineName        = string.Empty;
                string   genericMedicineName = string.Empty;
                string   medicineComposition = string.Empty;
                double   pricePerStrip       = 0;
                DateTime expiryDate;

                Console.WriteLine("Dear admin, please enter the medicine name you want to provide the generic medicine detail");
                Console.WriteLine();
                Console.WriteLine("1. Dolo 650");
                Console.WriteLine("2. Montair LC");
                Console.WriteLine("3. Remilyn D");
                Console.WriteLine();

                medicineName = Console.ReadLine();
                Console.WriteLine("Please provide the corresponding Generic medicine name");
                genericMedicineName = Console.ReadLine();
                Console.WriteLine("Please provide the composition (Chemical names separated by comma)");
                medicineComposition = Console.ReadLine();
                Console.WriteLine("Please provide price per strip in valid format");
                pricePerStrip = double.Parse(Console.ReadLine());
                Console.WriteLine("Please enter the expiry date for the medicine in mm/dd/yyyy format.");
                expiryDate = DateTime.Parse(Console.ReadLine());
                Medicine chosenGenericMedicine = objMainProgram.CreateMedicineDetail(medicineName.Trim(), genericMedicineName.Trim(), medicineComposition.Trim(), expiryDate, pricePerStrip);

                Console.WriteLine();
                Console.WriteLine("Dear admin, here are the generic medicine details for: " + chosenGenericMedicine.Name);
                Console.WriteLine();
                Console.WriteLine("Generic medicine name: " + chosenGenericMedicine.GenericMedicineName);
                Console.WriteLine("Composition: " + chosenGenericMedicine.Composition);
                Console.WriteLine("Price per strip: " + chosenGenericMedicine.PricePerStrip);
                Console.WriteLine("Expiry date: " + chosenGenericMedicine.ExpiryDate.ToShortDateString());
                #endregion

                #region Carton detail
                Console.WriteLine("Do you want to pack in carton to sell it to a retailer? y/n");
                string response = Console.ReadLine();
                if (response.ToLower().Equals("y"))
                {
                    DateTime launchDate;
                    int      medicineStripCount = 0;
                    string   retailerAddress    = string.Empty;

                    Console.WriteLine("Medicine expiry date: " + medicine.ExpiryDate.ToShortDateString());
                    Console.WriteLine("Please enter the date for which you want to send to retailer in mm/dd/yyyy format. Please check that the launch date should be lesser than the expiry date");
                    launchDate = DateTime.Parse(Console.ReadLine());
                    Console.WriteLine("How many medicine strips do you want to send to retailer?");
                    medicineStripCount = int.Parse(Console.ReadLine());
                    Console.WriteLine("Please provide the retailer address to whom you want to send these medicines to");
                    retailerAddress = Console.ReadLine();

                    CartonDetail cartonDetail = objMainProgram.CreateCartonDetail(medicineStripCount, launchDate, retailerAddress, chosenGenericMedicine);

                    if (cartonDetail != null)
                    {
                        Console.WriteLine();
                        Console.WriteLine("Dear admin, your medicine carton details are as follows:");
                        Console.WriteLine();
                        Console.WriteLine("Generic medicine name: " + cartonDetail.Medicine.GenericMedicineName);
                        Console.WriteLine("Launch date to retailer: " + cartonDetail.LaunchDate.ToShortDateString());
                        Console.WriteLine("No of medicine strips: " + cartonDetail.MedicineStripCount);
                        Console.WriteLine("Retailer address: " + cartonDetail.RetailerAddress);
                        Console.WriteLine("Total amount: " + cartonDetail.TotalAmount.ToString());
                    }
                    Console.WriteLine();
                    Console.WriteLine("***Thank you. Have a great day***");
                }
                else
                {
                    Console.WriteLine();
                    Console.WriteLine("***Thank you. Have a great day***");
                }
                #endregion
            }
            catch (Exception ex)
            {
                Console.WriteLine("An exception occured in the process. Please find the detail: " + ex.Message);
                Console.WriteLine("An exception occured in the process. Exception stack trace: " + ex.StackTrace);
            }
            finally
            {
                Console.ReadKey();
            }
        }
Exemplo n.º 7
0
        public void NullMedicineObjectTest(int medicineStripCount, string launchDate, string retailerAddress)
        {
            CartonDetail c = ObjMainProgram.CreateCartonDetail(medicineStripCount, DateTime.Parse(launchDate), retailerAddress, null);

            Assert.That(c, Is.EqualTo(null));
        }