Blog.Services.Helpers.Wcf.EducationResource.Add C# (CSharp) Method

Add() public method

public Add ( Education education ) : Education
education Blog.Common.Contracts.Education
return Blog.Common.Contracts.Education
        public Education Add(Education education)
        {
            using (var svc = new ServiceProxyHelper<IEducationService>("EducationService"))
            {
                return svc.Proxy.Add(education);
            }
        }