Exemplo n.º 1
0
 public SampleItem Update(string id, SampleItem instance)
 {
     // TODO: Update the given instance of SampleItem in the collection
     throw new NotImplementedException();
 }
Exemplo n.º 2
0
 public SampleItem Create(SampleItem instance)
 {
     // TODO: Add the new instance of SampleItem to the collection
     throw new NotImplementedException();
 }
Exemplo n.º 3
0
 public SampleItem Update(string id, SampleItem instance)
 {
     // TODO: Update the given instance of SampleItem in the collection
     throw new NotImplementedException();
 }
Exemplo n.º 4
0
 public SampleItem Create(SampleItem instance)
 {
     // TODO: Add the new instance of SampleItem to the collection
     throw new NotImplementedException();
 }
Exemplo n.º 5
0
 public SampleItem Update(string id, SampleItem instance)
 {
     return instance;
 }
Exemplo n.º 6
0
        public SampleItem Create(SampleItem instance)
        {

            instance.Id = 1;
            return instance;
        }