diff options
| author | mo.khan <mo.khan@a0a4a051-f042-0410-9e78-9fae330bdb64> | 2008-01-07 00:58:26 +0000 |
|---|---|---|
| committer | mo.khan <mo.khan@a0a4a051-f042-0410-9e78-9fae330bdb64> | 2008-01-07 00:58:26 +0000 |
| commit | 5b9c0399fa39e59af0a5bc8ccee2a00b5f99837c (patch) | |
| tree | 7c90acc7bbee79d2212f9b74e24e18728b2c6b0a | |
| parent | 766b8bfcf63e448ad8ac35ad3580589819b0cf51 (diff) | |
removed test service.
git-svn-id: http://mokhan.googlecode.com/svn/trunk@15 a0a4a051-f042-0410-9e78-9fae330bdb64
3 files changed, 0 insertions, 31 deletions
diff --git a/Sait/Cmpp299/Assignment1/trunk/src/app/Marina.Web.UI/Marina.Web.UI.csproj b/Sait/Cmpp299/Assignment1/trunk/src/app/Marina.Web.UI/Marina.Web.UI.csproj index 4ac27ea..462eecc 100644 --- a/Sait/Cmpp299/Assignment1/trunk/src/app/Marina.Web.UI/Marina.Web.UI.csproj +++ b/Sait/Cmpp299/Assignment1/trunk/src/app/Marina.Web.UI/Marina.Web.UI.csproj @@ -105,10 +105,6 @@ <Compile Include="Login.aspx.designer.cs">
<DependentUpon>Login.aspx</DependentUpon>
</Compile>
- <Compile Include="OnlineServices.asmx.cs">
- <DependentUpon>OnlineServices.asmx</DependentUpon>
- <SubType>Component</SubType>
- </Compile>
<Compile Include="RegisterBoat.aspx.cs">
<DependentUpon>RegisterBoat.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
@@ -175,7 +171,6 @@ <ItemGroup>
<Content Include="CurrentLeases.aspx" />
<Content Include="LeaseSlip.aspx" />
- <Content Include="OnlineServices.asmx" />
<Content Include="ViewRegisteredBoats.aspx" />
<Content Include="windsor.config.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
diff --git a/Sait/Cmpp299/Assignment1/trunk/src/app/Marina.Web.UI/OnlineServices.asmx b/Sait/Cmpp299/Assignment1/trunk/src/app/Marina.Web.UI/OnlineServices.asmx deleted file mode 100644 index 68e4b17..0000000 --- a/Sait/Cmpp299/Assignment1/trunk/src/app/Marina.Web.UI/OnlineServices.asmx +++ /dev/null @@ -1 +0,0 @@ -<%@ WebService Language="C#" CodeBehind="OnlineServices.asmx.cs" Class="Marina.Web.UI.OnlineServices" %>
diff --git a/Sait/Cmpp299/Assignment1/trunk/src/app/Marina.Web.UI/OnlineServices.asmx.cs b/Sait/Cmpp299/Assignment1/trunk/src/app/Marina.Web.UI/OnlineServices.asmx.cs deleted file mode 100644 index 90249ee..0000000 --- a/Sait/Cmpp299/Assignment1/trunk/src/app/Marina.Web.UI/OnlineServices.asmx.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System.ComponentModel;
-using System.Web.Services;
-
-namespace Marina.Web.UI {
- [WebService( Namespace = "http://tempuri.org/" )]
- [WebServiceBinding( ConformsTo = WsiProfiles.BasicProfile1_1 )]
- [ToolboxItem( false )]
- public class OnlineServices : WebService {
- [WebMethod]
- public string AddCustomer( string firstName, string lastName, string phone, string city ) {
- return null;
- }
-
- [WebMethod]
- public string UpdateCustomer( long id, string firstName, string lastName, string phone, string city ) {
- return null;
- }
-
- [WebMethod]
- public string GetCustomerRecordById(string firstName, string lastName, string phone, string city)
- {
- return null;
- }
- }
-}
\ No newline at end of file |
