sharp-wawi/Parts.cs

23 lines
346 B
C#
Raw Normal View History

2018-07-26 16:55:41 +02:00
using System;
using appsrv.attributes;
using sharpwawi.models;
namespace sharpwawi
{
public static class Parts
{
[WebCallable]
public static Part Create(){
return new Part();
}
[WebCallable]
public static Part ByKey(String key){
return new Part();
}
}
}