public Blab GetById(Guid Id) { try { Blab blab = (Blab)plugin.ReadById(Id); return(blab); } catch (Exception ex) { throw new BlabAdapterNotFoundException(ex.Message.ToString()); } }
/// <summary> /// Get a Blab by the GUID /// </summary> /// <param name="Id">GUID of the Blab you wish to get</param> /// <returns></returns> public Blab GetById(Guid Id) { return((Blab)Plugin.ReadById(Id)); }
public Blab GetById(Guid id) { return((Blab)_plugin.ReadById(id)); }