21 lines
581 B
C#
21 lines
581 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.ServiceModel;
|
|
using System.Text;
|
|
using Weee.Models;
|
|
|
|
namespace Weee.WCFService
|
|
{
|
|
// NOTE: You can use the "Rename" command on the "Refactor" menu to change the interface name "IWCFFabService" in both code and config file together.
|
|
[ServiceContract]
|
|
public interface IWCFFabService
|
|
{
|
|
[OperationContract]
|
|
IEnumerable<Fab> GetFabs(string authId);
|
|
[OperationContract]
|
|
Fab SaveFab(Fab toBeSave, string authId);
|
|
}
|
|
}
|