示例#1
0
        public IHttpActionResult AddAuction(AuctionDTO auction)
        {
            Auction a = AuctionDTO.GetAuctionByAuctionDTO(auction);

            ServiceLocator.GetInstance.GetAuctionService.Save(a);
            return(this.Ok());
        }