示例#1
0
 public static dataBB.BingoContent ToModelData(this dtoBB.BingoContent source)
 {
     return(new dataBB.BingoContent()
     {
         BingoContentId = source.BingoContentId,
         Content = source.Content,
         CreatedDate = source.CreatedDate,
         CreatedUserId = source.CreatedUserId,
         FreeSquareIndicator = source.FreeSquareIndicator,
         IsDeleted = source.IsDeleted,
         NumberOfDownvotes = source.NumberOfDownvotes,
         NumberOfUpvotes = source.NumberOfUpvotes,
         UpdatedDate = source.UpdatedDate,
         UpdatedUserId = source.UpdatedUserId,
     });
 }
示例#2
0
        public async Task <IHttpActionResult> Put(System.Guid bingoContentId, [FromBody] dtoBB.BingoContent dtoItem)
        {
            try
            {
                if (!base.OnActionExecuting(out HttpStatusCode httpStatusCode, out string message))
                {
                    return(Content(httpStatusCode, message));
                }

                if (dtoItem == null)
                {
                    return(BadRequest());
                }

                dtoItem.BingoContentId = bingoContentId;

                var updatedDBItem = _factory.Create(dtoItem);                 // map
                var result        = await Repo.UpdateAsync(updatedDBItem);

                RunCustomLogicAfterUpdatePut(ref updatedDBItem, ref result);

                if (result.Status == cghEnums.RepositoryActionStatus.Updated)
                {
                    // map to dto
                    var updatedDTOItem = _factory.Create(result.Entity);
                    return(Ok(updatedDTOItem));
                }
                else if (result.Status == cghEnums.RepositoryActionStatus.NotFound)
                {
                    return(NotFound());
                }

                Warn("Unable to update object via Web API", LogMessageType.Instance.Warn_WebApi, result.Exception, httpResponseStatusCode: 400, url: Request.RequestUri.ToString());
                return(BadRequest());
            }
            catch (Exception ex)
            {
                Error(message: ex.Message, logMessageType: LogMessageType.Instance.Exception_WebApi, ex: ex);

                if (System.Diagnostics.Debugger.IsAttached)
                {
                    System.Diagnostics.Debugger.Break();
                }

                return(InternalServerError());
            }
        }
示例#3
0
        public async Task <IHttpActionResult> Post([FromBody] dtoBB.BingoContent dtoItem)
        {
            try
            {
                if (!base.OnActionExecuting(out HttpStatusCode httpStatusCode, out string message))
                {
                    return(Content(httpStatusCode, message));
                }

                if (dtoItem == null)
                {
                    return(BadRequest());
                }

                // try mapping & saving
                var newDBItem = _factory.Create(dtoItem);

                var result = await Repo.InsertAsync(newDBItem);

                RunCustomLogicAfterInsert(ref newDBItem, ref result);

                if (result.Status == cghEnums.RepositoryActionStatus.Created)
                {                   // map to dto
                    var newDTOItem   = _factory.Create(result.Entity);
                    var uriFormatted = Request.RequestUri.ToString().EndsWith("/") == true?Request.RequestUri.ToString().Substring(0, Request.RequestUri.ToString().Length - 1) : Request.RequestUri.ToString();

                    return(Created($"{uriFormatted}/{newDTOItem.BingoContentId}", newDTOItem));
                }

                Warn("Unable to create object via Web API", LogMessageType.Instance.Warn_WebApi, result.Exception, httpResponseStatusCode: 400, url: Request.RequestUri.ToString());
                return(BadRequest());
            }
            catch (Exception ex)
            {
                Error(message: ex.Message, logMessageType: LogMessageType.Instance.Exception_WebApi, ex: ex);

                if (System.Diagnostics.Debugger.IsAttached)
                {
                    System.Diagnostics.Debugger.Break();
                }

                return(InternalServerError());
            }
        }
示例#4
0
 public BingoContent(ILoggingService log, IDataService <IWebApiDataServiceBB> dataService, xDTO.BingoContent dto) : this(log, dataService)
 {
     _dto = dto;
 }
示例#5
0
 public BingoContent(ILoggingService log, IDataService <IWebApiDataServiceBB> dataService) : base(log, dataService)
 {
     _dto = new xDTO.BingoContent();
     OnLazyLoadRequest += HandleLazyLoadRequest;
 }