public async Task <string> Document(string id) { if (string.IsNullOrEmpty(id)) { return(await AppUtilsServices.Get("/jeevehmarket/_all_docs")); } return(await AppUtilsServices.Get("/jeevehmarket/" + id)); }
public async Task <string> GetAllArticles() { return(await AppUtilsServices.Get("/jeevehmarket/_design/article/_view/all")); }
public async Task <string> GetAllUsers() { return(await AppUtilsServices.Get("/jeevehmarket/_design/user/_view/all")); }
public async Task <string> GetAllDesigns() { return(await AppUtilsServices.Get("/jeevehmarket/_design_docs")); }
public async Task <string> Test() { return(await AppUtilsServices.Get("/jeevehmarket/_all_docs")); }