Pomona.Example.HandledThingsHandler.Get C# (CSharp) Method

Get() public method

public Get ( int id ) : HandledThing
id int
return Pomona.Example.Models.HandledThing
        public HandledThing Get(int id)
        {
            var thing = this.repository.Query<HandledThing>().First(x => x.Id == id);
            thing.FetchedCounter++;
            return thing;
        }