private BindingList <DBStoredImage> GetDBStoredImages(string companyID)
        {
            BindingList <DBStoredImage> itemList = new BindingList <DBStoredImage>(_serviceAgent.GetDBStoredImages(companyID).ToList());

            Dirty       = false;
            AllowCommit = false;
            return(itemList);
        }
 private BindingList <DBStoredImage> GetDBStoredImages(string companyID)
 {//note this get is to the singleton repository...
     return(new BindingList <DBStoredImage>(_serviceAgent.GetDBStoredImages(companyID).ToList()));
 }