Пример #1
0
        public async Task <bool> Delete(int showingId)
        {
            bool wasUpdatedOk             = false;
            ShowingServiceAccess sService = new ShowingServiceAccess();

            try
            {
                wasUpdatedOk = await sService.DeleteShowing(showingId);
            }
            catch (Exception)
            {
                wasUpdatedOk = false;
            }
            return(wasUpdatedOk);
        }
Пример #2
0
 public ShowingControl()
 {
     _sAccess = new ShowingServiceAccess();
 }