Skip to content

Instantly share code, notes, and snippets.

@jipengxiang
Last active February 25, 2022 21:42
Show Gist options
  • Save jipengxiang/32dda180721ba5f624260ec35633668b to your computer and use it in GitHub Desktop.
Save jipengxiang/32dda180721ba5f624260ec35633668b to your computer and use it in GitHub Desktop.
(1) PLease upload your client side code to call talents API
(2) AWS url for web API if you have PUBLISHED your web api to AWS
or url to S3 image
(3) Sequence diagram for calling Stripe API
or calling global weather web service
@Timelessly
Copy link

Lim Wen Hui 1646348

public class TalentsController : ApiController
{
static readonly TalentRepository repository = new TalentRepository();
[EnableCors(origins: "", headers: "", methods: "*")]
// download Microsoft.AspNet.Cors package library
[Route("api/talents")]
public IEnumerable GetAllTalents()
{
return repository.GetAll();
}

    [Route("api/talents/{id:int}")]
    public Talent GetTalent(int id)
    {
        Talent item = repository.Get(id);
        if (item == null)
        {
            throw new HttpResponseException(HttpStatusCode.NotFound);
        }
        return item;
    }
}
  1. https://s3-ap-southeast-1.amazonaws.com/cscassignment/talent

web payment stripe

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment