Beispiel #1
0
        public ApiResponse DeleteById(long id)
        {
            MakeProcessor = new MakeProcessor();
            Response      = new ApiResponse();

            try
            {
                MakeProcessor.Delete(id);
                Response.text   = "Entity was successfully removed from the system.";
                Response.result = true;

                return(Response);
            }
            catch
            {
                Response.text   = "Unfortunately something went wrong :(";
                Response.result = false;

                return(Response);
            }
        }
Beispiel #2
0
        public ApiResponse Delete(List <long> idList)
        {
            MakeProcessor = new MakeProcessor();
            Response      = new ApiResponse();

            try
            {
                MakeProcessor.Delete(idList);
                Response.text   = "Entity was successfully removed from the system.";
                Response.result = true;

                return(Response);
            }
            catch
            {
                Response.text   = "Unfortunately something went wrong. Try again later. :)";
                Response.result = false;

                return(Response);
            }
        }