/// <summary> /// Read /// </summary> /// <param name="id">The id of a record.</param> /// <returns>The record associated with the id.</returns> public ExampleModel Read(string id) { var myData = repository.Read(id); return(myData); }