public PackageTest()
 {
     packageService = new PackageService();
     packageDao = new PackageDAO();
     testPack = new Package();
     testPack.UserId = 1;
     testPack.MedicalID = 1;
     testPack.ExpiryDate = DateTime.Today;
     testPack.DistributionCenterID = 1;
     testPack.ReceivingCenterID = null;
     testPack.TransactionDate = DateTime.Today;
 }
 public PackageController()
 {
     packageServies = new PackageService();
     distributionCenterService = new DistributionCenterService();
 }