public Resource getById(int id)
        {
            ResourcesRow row = GetData().FindByidResource(id);

            if (row == null)
            {
                logger.Warning("get resource by id returned no results");
                return(null);
            }

            return(Converter.ConvertSingle(row));
        }
 public ResourcesRowChangeEvent(ResourcesRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }