You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Common.Types/Connected.Common.Types.Model/Continent/IContinentService.cs

30 lines
986 B

2 years ago
using System.Collections.Immutable;
using Connected.Annotations;
2 years ago
using Connected.Notifications;
using Connected.ServiceModel;
2 years ago
namespace Connected.Common.Types.Continent;
2 years ago
[Service]
[ServiceUrl(Routes.Continents)]
public interface IContinentService : IServiceNotifications<int>
{
[ServiceMethod(ServiceMethodVerbs.Get)]
Task<ImmutableList<IContinent>?> Query();
[ServiceMethod(ServiceMethodVerbs.Get | ServiceMethodVerbs.Post)]
Task<ImmutableList<IContinent>> Query(PrimaryKeyListArgs<int> args);
[ServiceMethod(ServiceMethodVerbs.Get | ServiceMethodVerbs.Post)]
Task<IContinent> Select(PrimaryKeyArgs<int> args);
[ServiceMethod(ServiceMethodVerbs.Put | ServiceMethodVerbs.Post)]
Task<int> Insert(InsertContinentArgs args);
[ServiceMethod(ServiceMethodVerbs.Put | ServiceMethodVerbs.Post | ServiceMethodVerbs.Patch)]
Task Update(UpdateContitentArgs args);
[ServiceMethod(ServiceMethodVerbs.Delete | ServiceMethodVerbs.Post)]
Task Delete(PrimaryKeyArgs<int> args);
}