Exemple #1
0
        public Stream DeleteByCreatedDate(string createdDate)
        {
            IDeleteRegisteredApplicationBusinessService businessService = (IDeleteRegisteredApplicationBusinessService)BusinessFactory.Create(Keywords.DeleteRegisteredApplication);
            OperationResult result = businessService.DeleteByCreatedDate(Convert.ToDateTime(createdDate));

            return(result.ToJsonStream());
        }