public new BllEvent Update(BllEvent entity)
        {
            AttributeLibService attributeLibService = new AttributeLibService(uow);
            StatusLibService    statusLibService    = new StatusLibService(uow);
            UserLibService      userLibService      = new UserLibService(uow);
            FilepathLibService  filepathLibService  = new FilepathLibService(uow);

            attributeLibService.Update(entity.AttributeLib);
            statusLibService.Update(entity.StatusLib);
            userLibService.Update(entity.RecieverLib);
            filepathLibService.Update(entity.FilepathLib);
            uow.Events.Update(mapper.MapToDal(entity));
            uow.Commit();

            return(mapper.MapToBll(uow.Events.Get(entity.Id)));
        }