Monday, 21 August 2017

CommonService.cs

using Policyworld.Helper;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;

/// <summary>
/// Summary description for CommonService
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.

[System.Web.Script.Services.ScriptService]
public class CommonService : System.Web.Services.WebService
{

    public CommonService()
    {

        //Uncomment the following line if using designed components
        //InitializeComponent();
    }

    [WebMethod]
    public string HelloWorld()
    {
        return "Hello World";
    }

    #region SEND QUOTES EMAIL

    [WebMethod]
    public string sendQuotes(string useremail, string insurarname, string quotelink, string subject)
    {
        try
        {
            MailManager.SendQuotesMail(useremail, insurarname, quotelink, subject);
            return "1";
        }
        catch (Exception ex)
        {
            return "0";
        }
    }

    #endregion

}

No comments:

Post a Comment