NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.Text;

namespace MangamApi
{
// NOTE: You can use the "Rename" command on the "Refactor" menu to change the class name "MangaService" in code, svc and config file together.
// NOTE: In order to launch WCF Test Client for testing this service, please select MangaService.svc or MangaService.svc.cs at the Solution Explorer and start debugging.
public class MangaService : IMangaService
{
public List<Category> getCategoryList()
{
using (dbMangamEntities db = new dbMangamEntities())
{
return db.Categories.ToList();
}
}

public List<Chapter> getChapterList(int id = 0)
{
using (dbMangamEntities db = new dbMangamEntities())
{
return db.Chapters.Where(x => x.ProductID == id).OrderByDescending(x => x.ChapterID).ToList();
}
}

public List<Chapter> getChapterTenList()
{
using (dbMangamEntities db = new dbMangamEntities())
{
return db.Chapters.OrderByDescending(x => x.ChapterID).Take(10).ToList();
}
}

public List<View_Product> getCategoryToProductList(int id = 0)
{
using (dbMangamEntities db = new dbMangamEntities())
{
return db.View_Product.Where(x => x.CategoryID == id).OrderByDescending(y => y.ProductID).ToList();
}
}

public List<View_ProductInformation> getProductInformationList(int id = 0)
{
using (dbMangamEntities db = new dbMangamEntities())
{
return db.View_ProductInformation.Where(x => x.ChapterID == id).OrderBy(x => x.InformationID).ToList();
}
}

public List<View_Chapter> getFiveMangaChapterList()
{
using (dbMangamEntities db = new dbMangamEntities())
{
return db.View_Chapter.OrderByDescending(x => x.ChapterID).Take(15).ToList();
}
}

public List<View_Product> getFiveteenProductList()
{
using (dbMangamEntities db = new dbMangamEntities())
{
return db.View_Product.OrderByDescending(x => x.ProductID).Take(15).ToList();
}
}
}
}

------------------------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.ServiceModel.Web;
using System.Text;

namespace MangamApi
{
// NOTE: You can use the "Rename" command on the "Refactor" menu to change the interface name "IMangaService" in both code and config file together.
[ServiceContract]
public interface IMangaService
{
[OperationContract]
[WebInvoke(Method = "GET", UriTemplate = "/getCategoryList",
RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Wrapped)]
List<Category> getCategoryList();

[OperationContract]
[WebGet( UriTemplate = "/getChapterList?id={id}",
RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Wrapped)]
List<Chapter> getChapterList(int id);


[OperationContract]
[WebInvoke(Method = "GET", UriTemplate = "/getChapterTenList",
RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Wrapped)]
List<Chapter> getChapterTenList();


[OperationContract]
[WebGet(UriTemplate = "/getCategoryToProductList?id={id}",
RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Wrapped)]
List<View_Product> getCategoryToProductList(int id);

[OperationContract]
[WebGet(UriTemplate = "/getProductInformationList?id={id}",
RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Wrapped)]
List<View_ProductInformation> getProductInformationList(int id);

[OperationContract]
[WebInvoke(Method = "GET", UriTemplate = "/getFiveMangaChapterList",
RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Wrapped)]
List<View_Chapter> getFiveMangaChapterList();

[OperationContract]
[WebInvoke(Method = "GET", UriTemplate = "/getFiveteenProductList",
RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Wrapped)]
List<View_Product> getFiveteenProductList();

}
}


http://services.mangaship.com/
     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.