/// <summary> /// The static Fetch method interacts with the DataLayer /// in order to retrieve a object which corresponds to the ID key received. /// </summary> /// <param name="id">The ID key of the object</param> /// <returns>The object found matching the key.</returns> public static Customer Fetch(int id) { return(DataCustomer.Fetch(id)); }