Initial Commit
This commit is contained in:
56
TomcatServer/PlutoServer/Schedule_Impl.cs
Normal file
56
TomcatServer/PlutoServer/Schedule_Impl.cs
Normal file
@@ -0,0 +1,56 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.261
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace Pluto.Api {
|
||||
using System;
|
||||
using RemObjects.SDK;
|
||||
using RemObjects.SDK.Types;
|
||||
using RemObjects.SDK.Server;
|
||||
using RemObjects.SDK.Server.ClassFactories;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
|
||||
[RemObjects.SDK.Server.ClassFactories.StandardClassFactory()]
|
||||
[RemObjects.SDK.Server.Service(Name = "Schedule", InvokerClass = typeof(Schedule_Invoker), ActivatorClass = typeof(Schedule_Activator))]
|
||||
public class Schedule : RemObjects.SDK.Server.Service, ISchedule {
|
||||
private System.ComponentModel.Container components = null;
|
||||
public Schedule() :
|
||||
base() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
}
|
||||
protected override void Dispose(bool aDisposing) {
|
||||
if(aDisposing) {
|
||||
if((this.components != null)) {
|
||||
this.components.Dispose();
|
||||
}
|
||||
}
|
||||
base.Dispose(aDisposing);
|
||||
}
|
||||
public virtual AppointmentInfo1[] GetAppointments1(string apiKey, ProviderInfo1[] providerInfo, ResourceInfo1[] resourceInfo, System.DateTime startDate, System.DateTime endDate) {
|
||||
return null;
|
||||
}
|
||||
|
||||
public virtual AppointmentDetail1 GetAppointmentDetail1(string apiKey, int ApptID, bool bCalculateBalance)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
#region ISchedule Members
|
||||
|
||||
|
||||
public bool AddAppointment1(string apiKey, AppointmentInfo1 appointmentInfo) {
|
||||
return true;
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user