예제 #1
0
 public List <SampleItem> Create(SampleItem instance)
 {
     // TODO: Add the new instance of SampleItem to the collection
     return(new List <SampleItem>()
     {
         new SampleItem()
         {
             Id = 1, StringValue = "Hello"
         }
     });
 }
예제 #2
0
파일: Service1.cs 프로젝트: mdhari/EBuster
 public SampleItem Update(string id, SampleItem instance)
 {
     // TODO: Update the given instance of SampleItem in the collection
     throw new NotImplementedException();
 }
예제 #3
0
파일: Service1.cs 프로젝트: mdhari/EBuster
 public List<SampleItem> Create(SampleItem instance)
 {
     // TODO: Add the new instance of SampleItem to the collection
     return new List<SampleItem>() { new SampleItem() { Id = 1, StringValue = "Hello" } };
 }
예제 #4
0
 public SampleItem Update(string id, SampleItem instance)
 {
     // TODO: Update the given instance of SampleItem in the collection
     throw new NotImplementedException();
 }