Friday, August 12, 2016

Scopic Health Trek- A product by scopic solutions



A Medical and Healthcare CompanyYour Health, Our Concern:

A company based on medical tourism in India especially for the international patients. Patients from overseas need help and support the most and are just a phone call away which is the best part of the service.
Scopic Health Trek LLP helps and supports patients looking for medical treatment in India so that they get a good service right from their first contact. International patients who are looking for treatment in another country have anxiousness and have many questions and concerns. ScopicHealthTrek  promises to help by its expertise and speed and quality of response.
In short they are making Medical Travel to India easy.
For more information check the official site of Scopic Health Trek http://www.scopichealthtrek.com.

Scopic Health Trek Vision:

"To grow as a leader and be the most preferred, admired and appreciated healthcare service organization for international patients considering Indian hospitals for medical care."

Scopic Health Trek Mission:

"To achieve our vision by providing world class and top quality service to our customers through technology and innovative ideas, educated and responsive people."

What is medical tourism?

Medical tourism is the travel of people to another country for the purpose of obtaining medical treatment in that country. Traditionally, people would travel from less-developed countries to major medical centers in highly developed countries for medical treatment that was unavailable in their own communities; the recent trend is for people to travel from developed countries to third-world countries for medical treatments because of cost consideration, though the traditional pattern still continues. Another reason for travel for medical treatment is that some treatments may not be legal in the home country, such as some fertility procedures. Health tourism is a wider term for travels that focus on medical treatments and the utilization of healthcare services. It spans a wide field of health-oriented tourism ranging from preventive and health-conductive to rehabilitational and curative forms of travel; the latter being commonly referred to as Medical tourism.

Advantages of having Treatmeant with Scopic Health Trek:

  • ScopicHealthTrek LLP is one of the largest Platform for Healthcare Services for Consumers &     Providers.
  • We Collaborate with board registered Doctors, Internationally accredited Hospitals & Diagnostic Labs.
  • ScopicHealthTrek LLP provides cost effective with quality medical travel and a safe and secure experience for patients.
  • ScopicHealthTrek LLP empowers consumers with pricing transparency & significant saving to make informed choices about the Health care services/treatment they are seeking.
  • Based on the Cost, Condition and Location Consumers can find the best Healthcare Provider very easily beyond borders.
  • Consumers can access treatment of top quality at best price from most of the Leading hospitals.
  • ScopicHealthTrek LLP platform helps Healthcare providers to market their services globally and also help in managing reputation online and engaging patients.
  • Help providers to setup Virtual Practice to connect to patients directly.
  • A trusted organization to guide, help and support you at each and every step of the procedure and make your visit to India a successful and a memorable one.         
  • ScopicHealthTrek is one of the top facilitator in India and we work with India's top hospitals and doctors.
  • ScopicHealthTrek LLP ensures Zero Waiting Time and Best Cost service from World Class hospitals in India.
  • ScopicHealthTrek LLP help you get Opinion from Experts And top Specialists based on customers' medical reports which will be answered in just 24-48 hours.
  • ScopicHealthTrek.com is available for you round the clockInternational Helpline Number: +91 - 9024787948, +91 - 9829903282.
  • Scheduling of hotels, appointments - Free Airport Transfers to/ from the hospital.

ScopicHealthTrek Tie-Ups with:

1).Fortis Hospital: Fortis Healthcare Limited is a leading integrated healthcare delivery service provider in India. The healthcare verticals of the company primarily comprise hospitals, diagnostics and day care specialty facilities.
2).Apollo Hospital: The Apollo Hospitals Group is today recognized as the "Architect of Healthcare“in India. It is Asia’s largest healthcare group. Apollo Hospitals, under its iconic Chairman Dr. Prathap C Reddy, has completely transformed the way healthcare is perceived and practiced in this part of the world. 
3).Max Hospital: With over 2600 beds and 13 top hospitals in Delhi-NCR, Punjab and Uttarakhand, 2300 world-class doctors, Max Healthcare is one of the leading chain of hospitals in India.
4).Medanta Hospital: Medanta- the Medicity is one of India's largest multi-super specialty institutes located in Gurgaon, a bustling town in the National Capital Region. The institution has been envisioned with the aim of bringing to India the highest standards of medical care along with clinical research, education and training.
5).Rockland Hospital:  With over 10 years for being in operations this hospital enjoys its location in South Delhi overseeing the huge green belt of Sanjay Upvan extending from hospital till the Qutab Minar complex. It offers immense peace and seclusion by being in an institutional area and still being in center of Delhi.
These are the major hospitals of India  which provide all the facilities and services mentioned.











Tuesday, August 9, 2016

Creating an ActionResult whch returns XML with ASP.NET MVC

In the past, with Webforms, whenever I needed a page to return a pure XML document to the browser I used to do like this:

Response.Clear();
Response.ContentType = "text/xml";
Response.Write(myXml.ToString());
Response.End();

but when it came to doing the same thing with ASP.NET MVC it just didn’t seem right. You wouldn’t implement this code in the View, and it seems inappropriate to handle this within a controller Action (though you could). How about an ActionResult?

MvcContrib.ActionResults.XmlResult

I was a bit surprised to find this wasn’t already built into the core ASP.NET MVC framework so I set out to create my own, and in turn, found out one exists in the MVC Contrib project.

The XmlResult class is very simple. It inherits ActionResult and overrides the ExecuteResult method, where the XML is serialized and outputted to the response stream. Here’s a stripped down copy of the MvcContrib implementation:

public class XmlResult : ActionResult
{
private object _objectToSerialize;
public XmlResult(object objectToSerialize)
{
_objectToSerialize = objectToSerialize;
}

public override void ExecuteResult(ControllerContext context)
{
if (_objectToSerialize != null)
{
var xs = new XmlSerializer(_objectToSerialize.GetType());
context.HttpContext.Response.ContentType = "text/xml";
xs.Serialize(context.HttpContext.Response.Output, _objectToSerialize);
}
}
}

XmlResult in action

To make use of this, you merely have to return a new instance of an XmlResult object within your Controller action, passing it the object you want to be serialized to XML. Here’s how it would look if I were wanting to output a useless document created with the new magic that is System.Xml.Linq:

public ActionResult Index()
{
Element root = new XElement("root");
root.Add(new XElement("element1"));
root.Add(new XElement("element2"));
root.Add(new XAttribute("attribute1", "a value"));
return new XmlResult(root);
}

And, as expected, if this particular Controller Action was requested in your browser, you’d see the following result:

Now you only have to use it further the cool action result!

How to get duration of Audio/Video from URL using NAudio and WebClient


In this post I am going to explain how the NAudio WaveFileReader class can be used to get wave audio length.

NAudio is an open source .NET audio and MIDI library, containing dozens of useful audio related classes intended to speed development of audio related utilities in .NET.

Below are the simple steps to get audio duration of any audio or video file.
·         Install NAudio using nuget package manager console using below command in your .Net Application.
·          
PM> Install-Package NAudio

·         In your c# code download the file using web client:


WebClient wc = new WebClient();
   var bytes= wc.DownloadData(“Your AudioFile URL”) ;
Stream downloadedStream= new MemoryStream(bytes);
NAudio.Wave.WaveFileReader reader= new   NAudio.Wave.WaveFileReader(downloadedStream)

Var audioLength=reader.TotalTime; //we can get audio duration here



Apart from the audio length feature NAudio has many more contrasting features.
NAudio Features
·         Play back audio using a variety of APIs
o    WaveOut
o    DirectSound
o    ASIO
o    WASAPI (Windows Vista and above)
·         Decompress audio from different Wave Formats
o    MP3 decode using ACM or DMO codec
o    AIFF
o    G.711 mu-law and a-law
o    ADPCM
o    G.722
o    Speex (using NSpeex)
o    SF2 files
o    Decode using any ACM codec installed on your computer
·         Record audio using WaveIn, WASAPI or ASIO
·         Read and Write standard .WAV files
·         Mix and manipulate audio streams using a 32 bit floating mixing engine
·         Extensive support for reading and writing MIDI files
·         Full MIDI event model
·         Basic support for Windows Mixer APIs
·         A collection of useful Windows Forms Controls
·         Some basic audio effects, including a compressor



Monday, June 23, 2014

Welcome to Scopic Solutions!!!

About Scopic Solutions!

Scopic Solutions Pvt. Ltd. is global provider of offshore custom development solutions. Scopic has extensive experience in working with remote partners, clients (from USA to Australia to India to UK, Germany) and delivering high quality and highly scalable software applications, web, desktop, database and intranet solutions.

We have a strong team of professionals (extendable) who all are having more than 8, 9 years of experiences and all are Microsoft Certified in various MS Technologies.

We provide value to our customers by benefits such as quick to market, high quality professionals and processes, cutting edge technology expertise.

We are innovators and provide the best solution to the customers using latest technologies.

Offerings :
  • System Architect and Design
  • Customized Application Development
  • Dedicated Proprietary Product Development (Any Domain)
  • Intranet/ Sharepoint Development
  • Database Expertise
  • Re-engineering Maintenance and Technical Support
  • Quality Assurance
  • Online Email Support and Back-end Admin Support
  • Mobile/ SmartPhone Application Development
  • Graphic Designing


  • Business and Technology Expertise:
  • Web Application Development (.Net/MVC)
  • HTML5/JS/JQuery/CSS Based Websites
  • Maps API/Application Development
  • Cloud/Azure Based Development and Deployment
  • Mobile Application Development (Android)
  • Database Development (MSSQL/MySQL/Oracle)
  • SharePoint 2013 App/ 2010 Application Development
  • SharePoint Online/ Office 365 Application Development
  • InfoPath Development
  • Project Server Development
  • We perform quality assurance by employing various technical methods and measures, conducting formal technical reviews, and performing well-planned software testing.Our quality assurance (QA) team assists the project team in achieving a high quality end product. Team performs a set of activities that address quality assurance planning, oversight, record keeping, analysis, and reporting.