public void Remove(Pharmacy pharmacy)
        {
            Pharmacy org = Get_Data.GetPharmacy();

            if (org == null)
            {
                throw new Exception($"There is No Pharmacy is Added Yet");
            }
            Management.Remove(pharmacy);
        }
 public Pharmacy Get()
 {
     return(Get_Data.GetPharmacy());
 }